-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
57 lines (57 loc) · 1.74 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
{
"name": "browser-media-players",
"title": "Media Players",
"description": "Lets you control many popular website media players using media key events",
"author": {
"name": "Carlin Scott",
"email": "[email protected]"
},
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "https://github.com/carlin-q-scott/browser-media-players"
},
"bugs": {
"url": "https://github.com/carlin-q-scott/browser-media-players/issues"
},
"devDependencies": {
"ajv": "^6.12.3",
"eslint": "^6.8.0",
"process-nextick-args": "^2.0.1",
"web-ext": "^7.2.0",
"webextension-polyfill": "^0.6.0"
},
"scripts": {
"lint": "web-ext lint",
"firefox": "web-ext run --verbose --pref=javascript.options.strict=false",
"pandora": "web-ext run --url https://www.pandora.com/station/play/3576905106862450009 --browser-console",
"youtube": "web-ext run --url https://www.youtube.com/watch?v=hKitZEncwro --pref=javascript.options.strict=false --browser-console",
"spotify": "web-ext run --url https://open.spotify.com --browser-console",
"apple": "web-ext run --url https://beta.music.apple.com --browser-console",
"debug": "web-ext run --browser-console",
"build": "web-ext build",
"deploy": "web-ext sign --channel=listed",
"deploy-unlisted": "web-ext sign --channel=unlisted",
"help": "web-ext --help"
},
"webExt": {
"ignoreFiles": [
"jsconfig.json",
"package-lock.json",
"package.json",
"tests",
"data/pageMods.json",
"docs",
"icon425.png",
"web-ext-config.js",
"web-ext-artifacts",
"*.pem"
],
"build": {
"overwriteDest": true
}
},
"dependencies": {
"content-scripts-register-polyfill": "^1.0.0"
}
}