-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 986 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 986 Bytes
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
{
"name": "chrome-extension-release-tools",
"version": "1.0.0",
"description": "Release tools for Chrome extensions",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --config ../release/config/eslint.config.mjs .",
"pack": "node ../release/scripts/pack.mjs .",
"publish": "bash ../release/scripts/tag_release.sh ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/YOUR_USERNAME/YOUR_REPO.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/YOUR_USERNAME/YOUR_REPO/issues"
},
"homepage": "https://github.com/YOUR_USERNAME/YOUR_REPO#readme",
"devDependencies": {
"@eslint/js": "^9.36.0",
"baseline-browser-mapping": "^2.9.11",
"eslint": "^9.36.0",
"eslint-plugin-security": "^3.0.1",
"eslint-plugin-unicorn": "^61.0.2",
"globals": "^16.4.0",
"web-ext": "^9.2.0",
"webext-buildtools-chrome-crx-builder": "^1.0.18"
}
}