forked from FredrikNoren/ungit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 2.75 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
{
"name": "ungit",
"author": "Fredrik Norén <fredrik.jw.noren@gmail.com>",
"description": "Git made easy",
"version": "1.1.33",
"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.5.0",
"bluebird": "~3.5.0",
"blueimp-md5": "~2.10.0",
"body-parser": "~1.18.1",
"color": "~2.0.0",
"cookie-parser": "~1.4.3",
"crossroads": "~0.12.2",
"diff2html": "~2.3.0",
"express": "~4.15.4",
"express-session": "~1.15.6",
"getmac": "~1.2.1",
"hasher": "~1.2.0",
"ignore": "~3.3.5",
"just-detect-adblock": "~1.0.0",
"keen.io": "~0.1.3",
"knockout": "~3.4.2",
"lodash": "~4.17.4",
"memorystore": "~1.6.0",
"mkdirp": "~0.5.1",
"moment": "~2.18.1",
"node-cache": "~4.1.1",
"npm": "~5.4.2",
"npm-registry-client": "~8.4.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.1.2",
"rc": "~1.2.1",
"rimraf": "~2.6.2",
"semver": "~5.4.1",
"serve-static": "~1.12.4",
"signals": "~1.0.0",
"snapsvg": "~0.5.1",
"socket.io": "~2.0.3",
"superagent": "~3.5.2",
"temp": "~0.8.3",
"winston": "~2.3.1",
"yargs": "~9.0.0"
},
"devDependencies": {
"ansi-color": "~0.2.1",
"babel-core": "~7.0.0-beta.0",
"babel-preset-es2015": "~7.0.0-beta.0",
"babel-preset-stage-0": "~7.0.0-beta.0",
"browserify": "~14.4.0",
"electron-packager": "~9.1.0",
"expect.js": "~0.3.1",
"extract-zip": "~1.6.5",
"grunt": "~1.0.1",
"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.2",
"grunt-plato": "~1.4.0",
"grunt-release": "~0.14.0",
"istanbul": "~0.4.5",
"mocha": "~3.5.3",
"nightmare": "~2.10.0",
"supertest": "~3.0.0"
},
"engines": {
"node": ">=0.10"
},
"license": "SEE LICENSE IN LICENSE.md",
"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
}
}