-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
67 lines (67 loc) · 1.6 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
64
65
66
67
{
"name": "RedmineNow",
"version": "0.4.0",
"repository": "emsk/redmine-now",
"scripts": {
"start": "electron ./app/main.js",
"clean": "./bin/clean.sh",
"postinstall": "electron-builder install-app-deps",
"lint": "yarn run lint:js && yarn run lint:css && yarn run lint:text",
"lint:js": "./bin/lint-js.sh",
"lint:css": "./bin/lint-css.sh",
"lint:text": "./bin/lint-text.sh",
"pack": "./bin/pack-all.sh",
"pack:mac": "./bin/pack-mac.sh",
"pack:win": "./bin/pack-win.sh",
"test": "./bin/test.sh",
"release": "yarn run clean && yarn install && yarn run pack"
},
"devDependencies": {
"ava": "~0.25.0",
"electron": "2.0.8",
"electron-builder": "20.11.1",
"spectron": "~4.0.0",
"stylelint": "~9.5.0",
"stylelint-config-standard": "~18.2.0",
"stylelint-order": "~1.0.0",
"textlint": "^11.0.0",
"textlint-rule-write-good": "^1.6.2",
"xo": "~0.23.0"
},
"build": {
"appId": "com.emsk.redmine-now",
"copyright": "Copyright (c) 2016-2019 emsk",
"mac": {
"category": "public.app-category.productivity",
"target": "dmg"
},
"dmg": {
"backgroundColor": "#fff",
"iconSize": 120,
"contents": [
{
"x": 140,
"y": 160,
"type": "file"
},
{
"x": 410,
"y": 160,
"type": "link",
"path": "/Applications"
}
]
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
},
"xo": {
"envs": [
"browser",
"node"
],
"space": true
}
}