forked from jasonlong/isometric-contributions
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 683 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 683 Bytes
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
{
"scripts": {
"test": "xo",
"build": "zip -r isometric-contributions.zip src/*",
"release": "release:*",
"release:ff": "npx web-ext-submit --source-dir src",
"release:chrome": "npx webstore upload --source=isometric-contributions.zip --auto-publish"
},
"devDependencies": {
"chrome-webstore-upload-cli": "^1.2.1",
"web-ext-submit": "^6.0.0",
"xo": "^0.40.1"
},
"xo": {
"semicolon": false,
"space": true,
"prefer-numeric-literals": 0,
"global": [
"obelisk",
"chrome"
],
"env": [
"browser"
],
"ignores": [
"src/webext-domain-permission-toggle.js",
"src/background.js"
]
}
}