-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
18 lines (18 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
18 lines (18 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"name": "fireefficient",
"version": "1.0.0",
"private": true,
"description": "Firefox extension that keeps ordinary tabs efficient and user-chosen sites unrestricted.",
"scripts": {
"check": "node --check shared/fireefficient.js && node --check background.js && node --check content/efficiency.js && node --check popup/popup.js && node --check options/options.js",
"test": "npm run check && node tests/smoke.js",
"test:all": "npm test && npm run lint && npm run test:firefox",
"test:firefox": "npm run build && node tests/firefox-smoke.js",
"lint": "web-ext lint --source-dir . --ignore-files .DS_Store README.md package.json package-lock.json amo amo/** tests tests/**",
"build": "web-ext build --source-dir . --artifacts-dir dist --overwrite-dest --ignore-files .DS_Store README.md package.json package-lock.json amo amo/** tests tests/**",
"build:xpi": "web-ext build --source-dir . --artifacts-dir dist --overwrite-dest --filename fireefficient-1.0.0.xpi --ignore-files .DS_Store README.md package.json package-lock.json amo amo/** tests tests/**"
},
"devDependencies": {
"web-ext": "10.3.0"
}
}