forked from FredrikNoren/ungit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.47 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "ungit",
"author": "Fredrik Norén <fredrik.jw.noren@gmail.com>",
"description": "Git made easy",
"version": "0.9.3",
"ungitPluginApiVersion": "0.2.0",
"scripts": {
"start": "node ./bin/ungit",
"test": "grunt test"
},
"repository": {
"type": "git",
"url": "https://github.com/FredrikNoren/ungit.git"
},
"bin": {
"ungit": "./bin/ungit",
"0ungit-credentials-helper": "./bin/credentials-helper"
},
"dependencies": {
"async": "~1.4.2",
"bluebird": "~2.10.2",
"blueimp-md5": "~1.1.1",
"body-parser": "~1.14.1",
"color": "~0.10.1",
"cookie-parser": "~1.4.0",
"crossroads": "~0.12.2",
"diff2html": "~1.1.1",
"express": "~4.13.3",
"express-session": "~1.11.3",
"forever-monitor": "~1.1.0",
"getmac": "~1.0.7",
"hasher": "~1.2.0",
"keen.io": "~0.1.3",
"knockout": "~3.3.0",
"lodash": "~3.10.1",
"mkdirp": "~0.5.1",
"moment": "~2.10.6",
"npm-registry-client": "~7.0.7",
"npmconf": "~2.1.2",
"octicons": "~3.1.0",
"open": "~0.0.5",
"os-homedir": "~1.0.1",
"passport": "~0.3.0",
"passport-local": "~1.0.0",
"raven": "~0.8.1",
"rc": "~1.1.2",
"rimraf": "~2.4.3",
"semver": "~5.0.3",
"serve-static": "~1.10.0",
"signals": "~1.0.0",
"snapsvg": "~0.4.0",
"socket.io": "~1.3.7",
"superagent": "^0.21.0",
"temp": "~0.8.3",
"uuid": "~2.0.1",
"winston": "~1.1.1",
"yargs": "~3.29.0"
},
"devDependencies": {
"ansi-color": "~0.2.1",
"browserify": "~11.2.0",
"electron-packager": "~5.1.0",
"expect.js": "~0.3.1",
"grunt": "~0.4.5",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-copy": "~0.8.2",
"grunt-contrib-imagemin": "~0.5.0",
"grunt-contrib-jshint": "~0.11.3",
"grunt-contrib-less": "~1.0.1",
"grunt-contrib-watch": "~0.6.1",
"grunt-image-embed": "0.3.3",
"grunt-lineending": "~0.2.4",
"grunt-mocha-istanbul": "~3.0.1",
"grunt-mocha-test": "~0.12.7",
"grunt-plato": "~1.3.0",
"grunt-release": "~0.13.0",
"istanbul": "~0.4.0",
"mocha": "~2.3.3",
"npm": "~3.3.10",
"phantomjs": "~1.9.18",
"supertest": "~0.15.0"
},
"engines": {
"node": ">=0.10"
},
"license": "MIT",
"main": "public/main.js",
"window": {
"title": "Ungit",
"icon": "icon.png",
"toolbar": false,
"frame": false,
"show": false,
"width": 1000,
"height": 600,
"position": "center",
"min_width": 400,
"min_height": 200
}
}