-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
82 lines (82 loc) · 2.51 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
{
"name": "gout",
"version": "0.13.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": "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/gout",
"type": "module",
"scripts": {
"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/chromium/",
"extension:firefox": "web-ext run -t firefox-desktop -s src/extension/firefox/",
"build:chromium": "web-ext build -s src/extension/chromium/ -a build/chromium/ -o",
"build:firefox": "web-ext build -s src/extension/firefox/ -a build/firefox/ -o",
"clean": "node .script/clean.js"
},
"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/mocha": "10.0.9",
"addons-linter": "7.3.0",
"eslint": "9.14.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.13.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.12.0",
"htmlhint": "1.1.4",
"http-server": "14.1.1",
"markdownlint": "0.36.1",
"metalint": "0.18.0",
"mocha": "10.8.2",
"npm-package-json-lint": "8.0.0",
"prettier": "3.3.3",
"purgecss": "6.0.0",
"stylelint": "16.10.0",
"stylelint-order": "6.0.4",
"typedoc": "0.26.11",
"typescript": "5.6.3",
"web-ext": "8.3.0",
"yaml-lint": "1.7.0"
},
"engines": {
"node": ">=22.10"
},
"private": true
}