-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.45 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
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "station-timer",
"productName": "Station Timer",
"version": "1.1.0",
"description": "A simple timer application that repeatedly counts down for a given amount of times",
"author": "Ahmad Ouerfelli <[email protected]>",
"license": "MIT",
"keywords": [
"station",
"timer"
],
"homepage": "https://github.com/aouerfelli/station-timer#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/aouerfelli/station-timer.git"
},
"bugs": {
"url": "https://github.com/aouerfelli/station-timer/issues"
},
"main": "./app/main.js",
"scripts": {
"start": "electron .",
"watch": "nodemon --exec \"npm start\" -e \"js css html\"",
"pack": "build --dir",
"dist": "build",
"postinstall": "install-app-deps"
},
"build": {
"appId": "com.aouerfelli.station-timer",
"win": {
"target": [
{
"target": "nsis",
"arch": "ia32"
},
{
"target": "portable",
"arch": "ia32"
}
]
},
"mac": {
"category": "public.app-category.utilities",
"target": [
"dmg"
]
},
"linux": {
"category": "Utility"
}
},
"dependencies": {
"number-to-words": "^1.2.3"
},
"devDependencies": {
"electron": "^1.6.11",
"electron-builder": "^19.8.0",
"eslint": "^4.1.1",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.6.0",
"nodemon": "^1.11.0"
}
}