-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
78 lines (78 loc) · 2.55 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
{
"name": "gout",
"version": "0.9.5",
"description": "Agrégateur d'Internet (flux RSS et tout le reste).",
"keywords": [
"gout",
"aggregator",
"feed",
"news",
"reader",
"rss",
"atom",
"scraper"
],
"homepage": "https://github.com/regseb/gout#readme",
"bugs": {
"url": "https://github.com/regseb/gout/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/gout",
"type": "module",
"scripts": {
"postinstall": "node .script/sync.js",
"lint": "metalint",
"lint:types": "tsc --project .tsconfig_lint.json",
"test": "npm run test:unit",
"test:unit": "mocha --config test/unit/mocharc.json",
"test:coverage": "stryker run",
"jsdocs": "typedoc --tsconfig .tsconfig_jsdocs.json --out jsdocs/ src/",
"server": "http-server -p6007 -c-1 --cors",
"extension:chromium": "web-ext run -t chromium -s src/extension/",
"extension:firefox": "web-ext run -t firefox-desktop -s src/extension/",
"build": "web-ext build -s src/extension/ -a build/ -o",
"release": "standard-version",
"clean": "node .script/clean.js"
},
"dependencies": {
"typeson": "7.0.2",
"webextension-polyfill": "0.10.0"
},
"devDependencies": {
"@stryker-mutator/core": "6.2.3",
"@stryker-mutator/mocha-runner": "6.2.3",
"@types/mocha": "10.0.0",
"addons-linter": "5.18.0",
"eslint": "8.26.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsdoc": "39.3.20",
"eslint-plugin-mocha": "10.1.0",
"eslint-plugin-n": "15.3.0",
"eslint-plugin-no-unsanitized": "4.0.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-regexp": "1.9.0",
"eslint-plugin-unicorn": "44.0.2",
"htmlhint": "1.1.4",
"http-server": "14.1.1",
"jsonlint-mod": "1.7.6",
"markdownlint": "0.26.2",
"metalint": "0.10.0",
"mocha": "10.1.0",
"purgecss": "5.0.0",
"standard-version": "9.5.0",
"stylelint": "14.14.0",
"stylelint-order": "5.0.0",
"typedoc": "0.23.17",
"typescript": "4.8.4",
"web-ext": "7.3.1",
"yaml-lint": "1.7.0"
},
"engines": {
"node": ">=18.0.0"
},
"private": true
}