forked from regseb/castkodi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.44 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
68
69
70
71
72
73
74
75
76
{
"name": "castkodi",
"version": "5.10.0",
"description": "WebExtension pour diffuser des vidéos / musiques sur Kodi.",
"keyword": [
"cast",
"kodi",
"webextension",
"firefox",
"youtube",
"twitch",
"vimeo",
"soundcloud"
],
"homepage": "https://addons.mozilla.org/addon/castkodi/",
"bugs": {
"url": "https://github.com/regseb/castkodi/issues"
},
"license": "EUPL-1.2",
"author": "Sébastien Règne <[email protected]> (https://github.com/regseb)",
"repository": "regseb/castkodi",
"funding": "https://www.paypal.me/sebastienregne",
"type": "module",
"scripts": {
"postinstall": "node script/sync.js",
"lint": "metalint",
"test": "npm run test:unit && npm run test:integration",
"test:unit": "c8 mocha -r test/polyfill.js test/unit/",
"test:integration": "mocha -r test/polyfill.js test/integration/",
"coverage:html": "c8 report --reporter html",
"coverage:lcov": "c8 report --reporter lcovonly",
"jsdocs": "jsdoc -r -d jsdocs/ src/",
"start": "web-ext run -s src/",
"build": "web-ext build -s src/ -a build/ -o",
"release": "standard-version",
"clean": "node script/clean.js"
},
"dependencies": {
"dialog-polyfill": "0.5.6"
},
"devDependencies": {
"abort-controller": "^3.0.0",
"addons-linter": "^2.17.0",
"c8": "^7.5.0",
"david": "^12.0.0",
"eslint": "^7.19.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^31.6.0",
"eslint-plugin-mocha": "^8.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-unicorn": "^27.0.0",
"event-target-shim": "^6.0.2",
"htmlhint": "^0.14.2",
"jsdoc": "^3.6.6",
"jsdom": "^16.4.0",
"jsonlint-mod": "^1.7.6",
"markdownlint": "^0.22.0",
"metalint": "^0.9.0",
"mocha": "^8.2.1",
"mock-socket": "^9.0.3",
"node-fetch": "^2.6.1",
"purgecss": "^4.0.0",
"sinon": "^9.2.4",
"standard-version": "^9.1.0",
"string.prototype.replaceall": "^1.0.4",
"stylelint": "^13.9.0",
"stylelint-order": "^4.1.0",
"web-ext": "^5.5.0",
"yaml-lint": "^1.2.4"
},
"engines": {
"node": ">=14.0.0"
}
}