-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.68 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.68 KB
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
{
"name": "cache-cleaner",
"private": true,
"scripts": {
"postinstall": "npx gulp",
"lint:eslint": "npx eslint src/js tests",
"lint:web-ext": "npm run manifest:firefox && npx web-ext lint --source-dir ./src/ --ignore-files dist/**",
"lint": "npm run lint:eslint && npm run lint:web-ext",
"test": "npm run manifest:test && node tests/test.js",
"chrome": "npm run manifest:chrome && web-ext run --source-dir ./src/ --target=chromium",
"firefox": "npm run manifest:firefox && web-ext run --source-dir ./src/",
"manifest:chrome": "npx json-merger -p --am concat -o src/manifest.json manifest.json manifest-chrome.json",
"manifest:firefox": "npx json-merger -p --am concat -o src/manifest.json manifest.json manifest-firefox.json",
"manifest:test": "npx json-merger -p --am concat -o src/manifest.json manifest.json tests/manifest-test.json",
"build:chrome": "npm run manifest:chrome && npx web-ext build -n {name}-chrome-{version}.zip -o -s src",
"build:firefox": "npm run manifest:firefox && npx web-ext build -n {name}-firefox-{version}.zip -o -s src",
"build": "npm run build:chrome && npm run build:firefox",
"prettier:check": "npx prettier --check .",
"prettier:write": "npx prettier --write .",
"actionlint": "actionlint",
"yamllint": "yamllint -c .github/yamllint.yaml ."
},
"dependencies": {
"@fortawesome/fontawesome-free": "^7.2.0",
"bootstrap": "^5.3.8",
"jquery": "^4.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/chrome": "^0.1.37",
"eslint": "^10.0.2",
"gulp": "^5.0.1",
"json-merger": "^3.0.0",
"prettier": "^3.8.1",
"puppeteer": "^24.38.0",
"web-ext": "^9.4.0"
}
}