-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
65 lines (65 loc) · 2.67 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
{
"name": "withexeditor",
"description": "View Source, View Selection, and Edit Text with the external editor.",
"author": "asamuzaK",
"license": "MPL-2.0",
"homepage": "https://github.com/asamuzaK/withExEditor",
"bugs": {
"url": "https://github.com/asamuzaK/withExEditor/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/asamuzaK/withExEditor.git"
},
"type": "module",
"dependencies": {
"commander": "^12.1.0",
"dompurify": "^3.2.3",
"url-sanitizer": "^2.0.6",
"webext-schema": "^5.5.1"
},
"devDependencies": {
"@asamuzakjp/dom-selector": "^6.3.5",
"@types/node": "^22.10.1",
"addons-linter": "^7.6.0",
"c8": "^10.1.2",
"chai": "^5.1.2",
"copyfiles": "^2.4.1",
"eslint": "^9.16.0",
"eslint-plugin-import-x": "^4.5.0",
"eslint-plugin-jsdoc": "^50.6.0",
"eslint-plugin-no-unsanitized": "^4.1.2",
"eslint-plugin-regexp": "^2.7.0",
"eslint-plugin-unicorn": "^56.0.1",
"globals": "^15.13.0",
"html-validate": "^8.27.0",
"jsdom": "^25.0.1",
"mocha": "^11.0.1",
"neostandard": "^0.11.9",
"npm-run-all2": "^7.0.1",
"sinon": "^19.0.2",
"stylelint": "^16.11.0",
"stylelint-config-standard": "^36.0.1",
"typescript": "^5.7.2",
"undici": "^7.1.0"
},
"scripts": {
"include": "npm-run-all -s include-*",
"include-browser": "copyfiles --up=3 --verbose node_modules/webext-schema/modules/browser.js src/mjs",
"include-purify": "copyfiles -f --verbose node_modules/dompurify/LICENSE node_modules/dompurify/dist/purify.min.js node_modules/dompurify/dist/purify.min.js.map src/lib/purify && node index include --dir=purify -i",
"include-url": "copyfiles -f --verbose node_modules/url-sanitizer/LICENSE node_modules/url-sanitizer/dist/url-sanitizer-wo-dompurify.min.js node_modules/url-sanitizer/dist/url-sanitizer-wo-dompurify.min.js.map src/lib/url && node index include --dir=url -i",
"lint": "npm-run-all -s lint-*",
"lint-addons-linter": "addons-linter src",
"lint-eslint": "eslint --fix .",
"lint-html": "html-validate src/html/*.html",
"lint-style": "stylelint --fix src/css/*.css",
"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"
},
"version": "12.0.2"
}