forked from fregante/notifications-preview-github
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 707 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 707 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
{
"repository": "tanmayrajani/notifications-preview-github",
"scripts": {
"test": "xo",
"release": "npm-run-all update-version --parallel upload:*",
"upload:amo": "cd extension && webext submit",
"upload:cws": "cd extension && webstore upload --auto-publish",
"update-version": "dot-json extension/manifest.json version $TRAVIS_TAG"
},
"license": "MIT",
"devDependencies": {
"chrome-webstore-upload-cli": "^1.1.1",
"dot-json": "^1.0.3",
"npm-run-all": "^4.0.2",
"webext": "^1.9.1-with-submit.1",
"xo": "^0.18.2"
},
"xo": {
"ignores": [
"extension/webext-options-sync.js"
],
"envs": [
"browser",
"webextensions"
]
}
}