-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.38 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
{
"name": "autofill-devtools",
"description": "Firefox Autofill Developer Tools Web Extension",
"homepage": "https://github.com/mozilla-extensions/autofill-devtools#readme",
"version": "1.0.0",
"author": "Mozilla",
"private": true,
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/mozilla-extensions/autofill-devtools/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mozilla-extensions/autofill-devtools.git"
},
"scripts": {
"build": "npm-run-all clean build:*",
"build:extension": "npx web-ext build -s ./extension/ --overwrite-dest",
"build:finalize": "mv web-ext-artifacts/*.zip web-ext-artifacts/autofill-devtools.xpi",
"clean": "npx rimraf web-ext-artifacts",
"lint": "npm run lint:eslint",
"lint:eslint": "eslint .",
"lint:fix": "npm run lint:eslint -- --fix",
"format": "prettier \"{extension,tests}/**/*.{js,jsx,ts,tsx}\" --write"
},
"devDependencies": {
"@microsoft/eslint-plugin-sdl": "1.0.1",
"eslint": "9.18.0",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-fetch-options": "0.0.5",
"eslint-plugin-html": "8.1.2",
"eslint-plugin-json": "4.0.1",
"eslint-plugin-jest": "28.11.0",
"eslint-plugin-mozilla": "4.0.0",
"eslint-plugin-no-unsanitized": "4.1.2",
"prettier": "3.4.2",
"jest": "^29.7.0",
"npm-run-all2": "7.0.2",
"rimraf": "6.0.1"
}
}