-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
40 lines (40 loc) · 1.24 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
{
"name": "google-music-hotkeys",
"homepage": "/~https://github.com/lidel/google-music-hotkeys",
"license": "CC0-1.0",
"repository": {
"type": "git",
"url": "/~https://github.com/lidel/google-music-hotkeys.git"
},
"scripts": {
"start": "run-s clean build firefox",
"clean": "shx rm -f build/*.zip",
"build": "run-s clean build:*",
"build:copy-wx-polyfill-lib": "shx cp node_modules/webextension-polyfill/dist/browser-polyfill.min.js add-on/browser-polyfill.min.js",
"build:bundle-extension": "web-ext build -s add-on/ -a build/",
"lint": "run-s lint:*",
"lint:standard": "standard --fix -v \"add-on/*.js\"",
"lint:web-ext": "web-ext lint -s add-on/",
"postcheckout": "npm update && run-s clean build:copy*",
"postmerge": "run-s postcheckout",
"precommit": "run-s -s clean lint build",
"prepush": "run-s -s precommit test build",
"firefox": "web-ext run -s add-on/ --browser-console"
},
"private": true,
"preferGlobal": false,
"standard": {
"ignore": [
"add-on/browser-polyfill.min.js"
]
},
"devDependencies": {
"npm-run-all": "4.1.5",
"shx": "0.3.3",
"standard": "16.0.3",
"web-ext": "6.0.0"
},
"dependencies": {
"webextension-polyfill": "0.7.0"
}
}