-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.18 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
{
"build": {
"appId": "com.alse.tartarus",
"win": {
"target": [
"nsis"
],
"icon": "resources/windows/icon.ico"
},
"nsis": {
"oneClick": true,
"installerHeaderIcon": "resources/windows/setup-icon.ico"
},
"mac": {
"icon": "resources/osx/icon.icns"
},
"dmg": {
"icon": "resources/osx/dmg-icon.icns",
"background": "resources/osx/dmg-background.png"
}
},
"directories": {
"buildResources": "resources"
},
"scripts": {
"postinstall": "node_modules/.bin/install-app-deps",
"build": "gulp build",
"prerelease": "gulp build --env=production",
"start": "gulp start"
},
"devDependencies": {
"chai": "^3.5.0",
"electron": "1.3.3",
"electron-builder": "^5.12.1",
"electron-mocha": "^3.0.0",
"fs-jetpack": "^0.9.0",
"gulp": "^3.9.0",
"gulp-batch": "^1.0.5",
"gulp-less": "^3.0.3",
"gulp-plumber": "^1.1.0",
"gulp-util": "^3.0.6",
"gulp-watch": "^4.3.5",
"mocha": "^3.0.2",
"rollup": "^0.34.7",
"source-map-support": "^0.4.2",
"spectron": "^3.3.0",
"yargs": "^4.2.0",
"electron-packager": "latest",
"gulp-ejs": "latest"
}
}