-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
46 lines (46 loc) · 1.01 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
{
"name": "electron-background-task-app",
"productName": "electron-background-task-app",
"version": "0.0.0",
"description": "Shows off how to run a task in the background",
"license": "MIT",
"repository": "johnhaley81/electron-background-task-app",
"author": {
"name": "John Haley",
"email": "[email protected]",
"url": "johnhaley.io"
},
"engines": {
"node": ">=4"
},
"electronVersion": "1.0.1",
"scripts": {
"test": "xo",
"start": "electron .",
"build": "electron-packager . $npm_package_productName --out=dist --ignore='^/dist$' --prune --asar --all --version=$npm_package_electronVersion"
},
"files": [
"index.js",
"index.html",
"index.css"
],
"keywords": [
"electron-app"
],
"dependencies": {
"electron-debug": "^0.3.0"
},
"devDependencies": {
"electron-packager": "^5.0.0",
"electron-prebuilt": "1.0.1",
"spectron": "^3.0.0",
"xo": "^0.10.0"
},
"xo": {
"esnext": true,
"envs": [
"node",
"browser"
]
}
}