-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
80 lines (80 loc) · 2.37 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
{
"name": "gout",
"version": "0.11.0",
"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:fix": "metalint --fix",
"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",
"serve": "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",
"clean": "node .script/clean.js"
},
"dependencies": {
"webextension-polyfill": "0.10.0"
},
"devDependencies": {
"@prantlf/jsonlint": "14.0.3",
"@prettier/plugin-xml": "3.3.1",
"@stryker-mutator/core": "8.2.6",
"@stryker-mutator/mocha-runner": "8.2.6",
"@types/mocha": "10.0.6",
"addons-linter": "6.23.0",
"eslint": "8.57.0",
"eslint-plugin-array-func": "4.0.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsdoc": "48.2.0",
"eslint-plugin-mocha": "10.3.0",
"eslint-plugin-n": "16.6.2",
"eslint-plugin-no-unsanitized": "4.0.2",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-regexp": "2.2.0",
"eslint-plugin-unicorn": "51.0.1",
"htmlhint": "1.1.4",
"http-server": "14.1.1",
"markdownlint": "0.33.0",
"metalint": "0.15.0",
"mocha": "10.3.0",
"npm-package-json-lint": "7.1.0",
"prettier": "3.2.5",
"purgecss": "5.0.0",
"stylelint": "16.2.1",
"stylelint-order": "6.0.4",
"typedoc": "0.25.11",
"typescript": "5.3.3",
"web-ext": "7.11.0",
"yaml-lint": "1.7.0"
},
"engines": {
"node": ">=20.6.0"
},
"private": true
}