-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 2.16 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
{
"name": "webext-schema",
"description": "WebExtensions schemas fetched from hg.mozilla.org",
"author": "asamuzaK",
"license": "MPL-2.0",
"homepage": "https://github.com/asamuzaK/webext-schema",
"bugs": "https://github.com/asamuzaK/webext-schema/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/asamuzaK/webext-schema.git"
},
"type": "module",
"exports": {
"default": {
"types": "./types/index.d.ts",
"default": "./index.js"
}
},
"types": "types/index.d.ts",
"dependencies": {
"camelize": "^1.0.1",
"commander": "^13.0.0",
"decamelize": "^6.0.0",
"json5": "^2.2.3",
"sinon": "^19.0.2"
},
"devDependencies": {
"@types/firefox-webext-browser": "^120.0.4",
"@types/node": "^22.10.5",
"@types/sinon": "^17.0.3",
"c8": "^10.1.3",
"eslint": "^9.17.0",
"eslint-plugin-import-x": "^4.6.1",
"eslint-plugin-jsdoc": "^50.6.1",
"eslint-plugin-regexp": "^2.7.0",
"eslint-plugin-unicorn": "^56.0.1",
"globals": "^15.14.0",
"mocha": "^11.0.1",
"neostandard": "^0.12.0",
"npm-run-all2": "^7.0.2",
"typescript": "^5.7.3",
"undici": "^7.2.0"
},
"scripts": {
"build": "npm run tsc && npm run lint && npm run test",
"lint": "eslint --fix .",
"start": "node index",
"test": "npm run test-central",
"test-beta": "c8 mocha --require=test/mocha/setup.js --channel=beta --exit test/*.test.js",
"test-central": "c8 mocha --require=test/mocha/setup.js --channel=central --exit test/*.test.js",
"test-esr": "c8 mocha --require=test/mocha/setup.js --channel=esr --exit test/*.test.js",
"test-release": "c8 mocha --require=test/mocha/setup.js --channel=release --exit test/*.test.js",
"test_all": "npm-run-all -s test-*",
"tsc": "node index clean --dir=types -i && npx tsc",
"update": "node index update -i",
"update-beta": "node index update --channel=beta -i",
"update-central": "node index update --channel=central -i",
"update-esr": "node index update --channel=esr -i",
"update-mail": "node index update --channel=mail -i",
"update-release": "node index update --channel=release -i"
},
"version": "5.5.2"
}