This repository was archived by the owner on Oct 30, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 99
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.33 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.33 KB
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
{
"devDependencies": {
"asar": "^0.13.0",
"chai": "^3.4.1",
"coveralls": "^2.11.4",
"electron": "^1.8.2",
"electron-mocha": "^3.1.1",
"electron-rebuild": "^1.7.3",
"fs-jetpack": "^1.2.0",
"gulp": "^3.9.0",
"gulp-util": "^3.0.6",
"istanbul": "^0.4.5",
"jshint": "^2.8.0",
"proxyquire": "^1.7.3",
"q": "^1.4.1",
"sinon": "^1.17.2",
"yargs": "^3.15.0"
},
"optionalDependencies": {
"appdmg": "^0.3.2",
"devuan": "^0.0.2",
"rcedit": "^0.3.0"
},
"scripts": {
"postinstall": "node ./tasks/app_npm_install && node ./node_modules/.bin/electron-rebuild",
"app-install": "node ./tasks/app_npm_install",
"build": "./node_modules/.bin/gulp build",
"release": "./node_modules/.bin/gulp release",
"start": "node ./tasks/start",
"test": "npm run test-unit && npm run test-integration",
"test-unit": "ELECTRON_PATH=./node_modules/.bin/electron ./node_modules/.bin/electron-mocha ./app/test/unit/**",
"test-integration": "ELECTRON_PATH=./node_modules/.bin/electron ./node_modules/.bin/electron-mocha --renderer ./app/test/integration/**",
"coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/electron-mocha ./app/test/unit/** -- --recursive",
"jshint": "./node_modules/.bin/jshint --config .jshintrc --exclude ./app/node_modules ./app"
}
}