forked from dz0ny/sputnik
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 975 Bytes
/
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
{
"devDependencies": {
"download": "^4.1.2",
"esperanto": "^0.6.17",
"fs-jetpack": "^0.6.2",
"gulp": "^3.8.8",
"gulp-less": "^1.3.6",
"gulp-util": "^3.0.1",
"q": "^1.0.1",
"vinyl-map": "^1.0.1",
"yargs": "^1.3.1"
},
"optionalDependencies": {
"appdmg": "^0.3.0"
},
"config": {
"nw": {
"version": "0.12.0",
"downloadUrls": {
"osx": "http://dl.nwjs.io/v{{version}}/nwjs-v{{version}}-osx-x64.zip",
"linux": "http://dl.nwjs.io/v{{version}}/nwjs-v{{version}}-linux-x64.tar.gz",
"windows": "http://dl.nwjs.io/v{{version}}/nwjs-{{version}}-win-ia32.zip"
}
}
},
"scripts": {
"postinstall": "node ./tasks/download-nw && cd ./app && npm install",
"build": "./node_modules/.bin/gulp build",
"start": "./node_modules/.bin/gulp start",
"test": "./node_modules/.bin/gulp start --target=test",
"release": "./node_modules/.bin/gulp release --target=release"
}
}