forked from regseb/castkodi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 3 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "castkodi",
"version": "6.1.1",
"description": "WebExtension pour diffuser des vidéos / musiques sur Kodi.",
"keywords": [
"cast",
"kodi",
"webextension",
"chrome",
"firefox",
"youtube",
"twitch",
"vimeo",
"soundcloud"
],
"homepage": "https://github.com/regseb/castkodi#readme",
"bugs": {
"url": "https://github.com/regseb/castkodi/issues",
"email": "[email protected]"
},
"license": "MIT",
"author": "Sébastien Règne <[email protected]> (https://github.com/regseb)",
"funding": "https://www.paypal.me/sebastienregne",
"repository": "regseb/castkodi",
"type": "module",
"scripts": {
"postinstall": "node .script/sync.js",
"lint": "metalint",
"lint:types": "tsc",
"test": "npm run test:unit && npm run test:integration",
"test:unit": "c8 mocha test/unit/",
"test:integration": "mocha test/integration/",
"coverage:html": "c8 report --reporter html",
"coverage:lcov": "c8 report --reporter lcovonly",
"jsdocs": "typedoc --tsconfig tsconfig_typedoc.json --out jsdocs/ src/",
"start:chromium": "web-ext run -t chromium -s src/",
"start:firefox": "web-ext run -t firefox-desktop -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",
"webextension-polyfill": "0.8.0"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/eslint-parser": "^7.15.8",
"@babel/eslint-plugin": "^7.14.5",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-syntax-top-level-await": "^7.14.5",
"@types/firefox-webext-browser": "^82.0.1",
"@types/jsdom": "^16.2.13",
"@types/mocha": "^9.0.0",
"@types/sinon": "^10.0.4",
"addons-linter": "^3.19.0",
"c8": "^7.10.0",
"david": "^12.0.0",
"eslint": "^7.32.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsdoc": "^36.1.1",
"eslint-plugin-mocha": "^9.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-regexp": "^1.3.1",
"eslint-plugin-unicorn": "^36.0.0",
"htmlhint": "^0.15.2",
"jsdom": "^18.0.0",
"jsonlint-mod": "^1.7.6",
"markdownlint": "^0.24.0",
"metalint": "^0.9.0",
"mocha": "^9.1.2",
"mock-socket": "^9.0.5",
"node-fetch": "^3.0.0",
"purgecss": "^4.0.3",
"sinon": "^11.1.2",
"standard-version": "^9.3.1",
"stylelint": "^13.13.1",
"stylelint-order": "^4.1.0",
"typedoc": "^0.22.5",
"typescript": "^4.4.3",
"web-ext": "^6.4.0",
"yaml-lint": "^1.2.4"
},
"engines": {
"node": ">=16.0.0"
},
"private": true
}