forked from storj-archived/storjshare-gui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.35 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
{
"devDependencies": {
"asar": "^0.7.2",
"chai": "^3.4.1",
"coveralls": "^2.11.4",
"electron-mocha": "^0.6.3",
"electron-prebuilt": "^0.36.0",
"flatten-packages": "^0.1.4",
"fs-jetpack": "^0.7.0",
"gulp": "^3.9.0",
"gulp-babel": "^5.2.1",
"gulp-less": "^3.0.3",
"gulp-sourcemaps": "^1.5.2",
"gulp-util": "^3.0.6",
"istanbul": "^0.4.1",
"jshint": "^2.8.0",
"mocha": "^2.3.4",
"proxyquire": "^1.7.3",
"q": "^1.4.1",
"sinon": "^1.17.2",
"tree-kill": "^0.1.1",
"yargs": "^3.15.0"
},
"optionalDependencies": {
"appdmg": "^0.3.2",
"rcedit": "^0.3.0"
},
"scripts": {
"postinstall": "node ./tasks/app_npm_install && cd ./app/node_modules/storj/node_modules/leveldown && node-gyp rebuild --target=0.36.12 --dist-url=https://atom.io/download/atom-shell",
"app-install": "node ./tasks/app_npm_install",
"build": "./node_modules/.bin/gulp build",
"release": "./node_modules/.bin/gulp release --env=production",
"start": "node ./tasks/start",
"test": "npm run test-unit && npm run jshint",
"test-unit": "./node_modules/.bin/mocha ./app/test/unit/**",
"coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha ./app/test/unit/** -- --recursive",
"jshint": "./node_modules/.bin/jshint --config .jshintrc --exclude ./app/node_modules ./app"
}
}