forked from nmaggioni/Kanbanion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 856 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
34
35
36
37
{
"name": "kanbanion",
"productName": "Kanbanion",
"version": "1.0.0",
"description": "A Kanban board. Simple, digital and local.",
"license": "MIT",
"repository": "nmaggioni/kanbanion",
"author": {
"name": "Niccolò Maggioni",
"email": "[email protected]",
"url": "nmaggioni.xyz"
},
"scripts": {
"start": "electron .",
"build": "electron-packager . --out=dist --app-version=$npm_package_version --prune --asar --overwrite --all"
},
"files": [
"index.js",
"index.html",
"index.css"
],
"keywords": [
"electron-app",
"electron"
],
"dependencies": {
"electron": "^1.3.3",
"electron-pug": "^1.5.1",
"pug": "^2.0.0-beta5",
"stylus": "^0.54.5"
},
"devDependencies": {
"electron-debug": "^1.0.0",
"devtron": "^1.1.0",
"electron-packager": "^7.0.0"
}
}