-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
90 lines (90 loc) · 2.67 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": "7.12.0",
"description": "WebExtension pour diffuser des vidéos et des 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": "regseb@gmail.com"
},
"license": "MIT",
"author": "Sébastien Règne <regseb@gmail.com> (https://github.com/regseb)",
"funding": [
"https://buymeacoffee.com/regseb",
"https://www.paypal.me/sebastienregne"
],
"repository": "regseb/castkodi",
"type": "module",
"scripts": {
"postinstall": "node .script/sync.js",
"lint": "metalint",
"lint:fix": "metalint --fix",
"lint:types": "tsc --project .tsconfig_lint.json",
"test": "npm run test:unit && npm run test:integration",
"test:unit": "mocha --config test/unit/mocharc.json",
"test:integration": "mocha --config test/integration/mocharc.json",
"test:coverage": "stryker run",
"jsdocs": "typedoc --tsconfig .tsconfig_jsdocs.json",
"start:chromium": "web-ext run --source-dir src/ --target chromium",
"start:firefox": "web-ext run --source-dir src/ --target firefox-desktop",
"build": "node .script/build.js",
"clean": "node .script/clean.js"
},
"dependencies": {
"linkedom": "0.18.5"
},
"devDependencies": {
"@prantlf/jsonlint": "16.0.0",
"@prettier/plugin-xml": "3.4.1",
"@stryker-mutator/core": "8.6.0",
"@stryker-mutator/mocha-runner": "8.6.0",
"@types/firefox-webext-browser": "120.0.4",
"@types/jsdom": "21.1.7",
"@types/mocha": "10.0.9",
"@types/sinon": "17.0.3",
"addons-linter": "7.3.0",
"eslint": "9.13.0",
"eslint-plugin-array-func": "5.0.2",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsdoc": "50.4.3",
"eslint-plugin-mocha": "10.5.0",
"eslint-plugin-n": "17.11.1",
"eslint-plugin-no-unsanitized": "4.1.2",
"eslint-plugin-promise": "7.1.0",
"eslint-plugin-regexp": "2.6.0",
"eslint-plugin-unicorn": "56.0.0",
"globals": "15.11.0",
"htmlhint": "1.1.4",
"jsdom": "25.0.1",
"markdownlint": "0.35.0",
"metalint": "0.18.0",
"mocha": "10.7.3",
"mock-socket": "9.3.1",
"npm-package-json-lint": "8.0.0",
"prettier": "3.3.3",
"purgecss": "6.0.0",
"sinon": "19.0.2",
"stylelint": "16.10.0",
"stylelint-order": "6.0.4",
"typedoc": "0.26.10",
"typescript": "5.6.3",
"web-ext": "8.3.0",
"yaml-lint": "1.7.0"
},
"engines": {
"node": ">=22.10.0"
},
"private": true
}