-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 1.08 KB
/
package.json
File metadata and controls
22 lines (22 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "nocoffee",
"version": "0.5.0",
"description": "NoCoffee vision simulator",
"main": "background.js",
"scripts": {
"_comment": "for Linux/macOS: remove 'bash' from 'start:chrome' script, and uncomment corresponding script in launch_chrome.sh",
"postinstall": "cp node_modules/webextension-polyfill/dist/browser-polyfill.js .",
"test": "eslint . && web-ext lint --ignore-files package\\* launch_chrome.sh",
"start:firefox": "cp manifests/manifest_firefox.json ./manifest.json && web-ext run",
"start:chrome": "cp manifests/manifest_chrome.json ./manifest.json && bash ./launch_chrome.sh",
"build:firefox": "cp manifests/manifest_firefox.json ./manifest.json && web-ext build --ignore-files package\\* launch_chrome.sh --overwrite-dest",
"build:chrome": "cp manifests/manifest_chrome.json ./manifest.json && web-ext build --ignore-files package\\* launch_chrome.sh --overwrite-dest"
},
"author": "Aaron Leventhal",
"license": "MIT",
"devDependencies": {
"eslint": "^9.19.0",
"web-ext": "^8.3.0",
"webextension-polyfill": "^0.12.0"
}
}