-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.09 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
{
"name": "roadbook",
"version": "1.1.0",
"description": "WebExtension pour extraire un roadbook d'un itinéraire Google Maps.",
"keywords": [
"roadbook",
"google",
"maps",
"libreoffice",
"calc"
],
"homepage": "https://github.com/regseb/roadbook#readme",
"bugs": {
"url": "https://github.com/regseb/roadbook/issues",
"email": "[email protected]"
},
"license": "MIT",
"author": "Sébastien Règne <[email protected]> (https://github.com/regseb)",
"funding": [
"https://buymeacoffee.com/regseb",
"https://www.paypal.me/sebastienregne"
],
"repository": "regseb/roadbook",
"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",
"build": "web-ext build --source-dir src/ --artifacts-dir build/ --overwrite-dest",
"clean": "node .script/clean.js"
},
"devDependencies": {
"@prantlf/jsonlint": "14.0.3",
"@prettier/plugin-xml": "3.4.1",
"@stryker-mutator/core": "8.4.0",
"@stryker-mutator/mocha-runner": "8.4.0",
"@types/eslint": "9.6.0",
"@types/firefox-webext-browser": "120.0.4",
"@types/mocha": "10.0.7",
"addons-linter": "6.33.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": "50.0.0",
"eslint-plugin-mocha": "10.5.0",
"eslint-plugin-n": "17.10.2",
"eslint-plugin-no-unsanitized": "4.0.2",
"eslint-plugin-promise": "7.1.0",
"eslint-plugin-regexp": "2.6.0",
"eslint-plugin-unicorn": "55.0.0",
"markdownlint": "0.34.0",
"metalint": "0.17.0",
"mocha": "10.7.0",
"npm-package-json-lint": "8.0.0",
"prettier": "3.3.3",
"typedoc": "0.26.5",
"typescript": "5.5.4",
"web-ext": "8.2.0",
"yaml-lint": "1.7.0"
},
"engines": {
"node": ">=22.1.0"
},
"private": true
}