-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 1.62 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
{
"name": "volume-normalizer",
"version": "2.0.12",
"private": true,
"license": "MIT",
"scripts": {
"build": "node scripts/build.js",
"lint:scripts": "node --check sites.js && node --check background.js && node --check content.js && node --check popup.js && node --check scripts/build.js && node --check scripts/bump-version.js && node --check scripts/check-build.js && node --check scripts/check-sites.js && node --check scripts/check-ui.js && node --check scripts/preview-popup.js && node --check scripts/publish-chrome.js && node --check scripts/setup-chrome-oauth-server.js && node --check scripts/setup-firefox-secrets-server.js && node --check scripts/test-runtime.js",
"lint:build": "node scripts/check-build.js",
"lint:firefox": "web-ext lint --source-dir dist/firefox",
"lint:sites": "node scripts/check-sites.js",
"lint:ui": "node scripts/check-ui.js",
"preview": "node scripts/preview-popup.js",
"test:runtime": "node scripts/test-runtime.js",
"check": "npm run build && npm run lint:scripts && npm run lint:sites && npm run lint:ui && npm run test:runtime && npm run lint:build && npm run lint:firefox",
"version:set": "node scripts/bump-version.js",
"publish:chrome": "node scripts/publish-chrome.js",
"publish:firefox": "web-ext sign --source-dir dist/firefox --artifacts-dir dist/firefox-signed --channel listed --amo-metadata amo-metadata.json --approval-timeout 0",
"setup:chrome": "node scripts/setup-chrome-oauth-server.js",
"setup:firefox": "node scripts/setup-firefox-secrets-server.js"
},
"devDependencies": {
"web-ext": "^10.5.0",
"yazl": "^3.3.1"
}
}