-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
38 lines (38 loc) · 913 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
38
{
"name": "kanbanion",
"productName": "Kanbanion",
"version": "1.1.0",
"description": "A Kanban board. Simple, digital and local.",
"license": "MIT",
"repository": "nmaggioni/kanbanion",
"author": {
"name": "Niccolò Maggioni",
"email": "[email protected]",
"url": "https://nmaggioni.xyz"
},
"scripts": {
"start": "electron .",
"build": "npm install; bower install; 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/remote": "2.0.1",
"electron": "15.0.0",
"electron-pug": "2.0.0",
"pug": "3.0.2",
"stylus": "0.55.0"
},
"devDependencies": {
"bower": "^1.7.9",
"electron-debug": "3.2.0",
"electron-packager": "15.4.0"
}
}