forked from FredrikNoren/ungit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 2.74 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
101
102
103
104
105
106
107
108
109
{
"name": "ungit",
"author": "Fredrik Norén <[email protected]>",
"description": "Git made easy",
"version": "1.4.18",
"ungitPluginApiVersion": "0.2.0",
"scripts": {
"start": "node ./bin/ungit",
"test": "grunt test",
"build": "grunt",
"watch": "grunt watch"
},
"repository": {
"type": "git",
"url": "https://github.com/FredrikNoren/ungit.git"
},
"bin": {
"ungit": "./bin/ungit",
"0ungit-credentials-helper": "./bin/credentials-helper"
},
"dependencies": {
"async": "~2.6.0",
"bluebird": "~3.5.1",
"blueimp-md5": "~2.10.0",
"body-parser": "~1.18.2",
"color": "~3.0.0",
"cookie-parser": "~1.4.3",
"crossroads": "~0.12.2",
"diff2html": "~2.3.3",
"express": "~4.16.3",
"express-session": "~1.15.6",
"getmac": "~1.4.1",
"hasher": "~1.2.0",
"ignore": "~3.3.7",
"just-detect-adblock": "~1.0.0",
"keen.io": "~0.1.3",
"knockout": "~3.5.0-beta",
"lodash": "~4.17.5",
"memorystore": "~1.6.0",
"mkdirp": "~0.5.1",
"moment": "~2.22.0",
"node-cache": "~4.2.0",
"npm": "~6.0.0-next.0",
"npm-registry-client": "~8.5.1",
"nprogress": "^0.2.0",
"octicons": "~3.5.0",
"open": "~0.0.5",
"os-homedir": "~1.0.2",
"passport": "~0.4.0",
"passport-local": "~1.0.0",
"raven": "~2.4.2",
"rc": "~1.2.6",
"rimraf": "~2.6.2",
"semver": "~5.5.0",
"serve-static": "~1.13.2",
"signals": "~1.0.0",
"snapsvg": "~0.5.1",
"socket.io": "~2.1.0",
"superagent": "~3.8.2",
"temp": "~0.8.3",
"winston": "~2.4.0",
"yargs": "~11.1.0"
},
"devDependencies": {
"ansi-color": "~0.2.1",
"babel-core": "~6.26.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"browserify": "~16.1.1",
"electron-packager": "~11.2.0",
"expect.js": "~0.3.1",
"extract-zip": "~1.6.6",
"grunt": "~1.0.2",
"grunt-babel": "~7.0.0",
"grunt-contrib-clean": "~1.1.0",
"grunt-contrib-copy": "~1.0.0",
"grunt-contrib-imagemin": "~2.0.1",
"grunt-contrib-jshint": "~1.1.0",
"grunt-contrib-less": "~1.4.1",
"grunt-contrib-watch": "~1.0.0",
"grunt-image-embed": "0.3.3",
"grunt-lineending": "~1.0.0",
"grunt-mocha-istanbul": "~5.0.2",
"grunt-mocha-test": "~0.13.3",
"grunt-plato": "~1.4.0",
"grunt-release": "~0.14.0",
"istanbul": "~0.4.5",
"mocha": "~5.0.5",
"nightmare": "~3.0.1",
"supertest": "~3.0.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
}
}