forked from htrinter/Open-Multiple-URLs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 2 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 2 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "open-multiple-urls",
"version": "1.5.3-SNAPSHOT",
"description": "Browser extension that opens a list of URLs",
"scripts": {
"dev:firefox": "NODE_ENV=firefox parcel watch src/*.html --out-dir dist-dev --no-hmr",
"dev:chrome": "NODE_ENV=chrome parcel watch src/*.html --out-dir dist-dev --no-hmr",
"build:firefox": "NODE_ENV=firefox parcel build src/*.html --out-dir dist-firefox",
"build:chrome": "NODE_ENV=chrome parcel build src/*.html --out-dir dist-chrome",
"build:all": "npm run format && npm run lint && npm run test && npm run build:firefox && npm run build:chrome",
"format": "npx prettier --write .",
"format:check": "npx prettier --check .",
"lint": "npx eslint . --fix --ext .ts,.js",
"lint:check": "npx eslint . --ext .ts,.js",
"test": "npx jest --collect-coverage",
"zip:firefox": "mkdir -p dist-zip && zip -FSrj dist-zip/open-multiple-urls-$npm_package_version-firefox.zip dist-firefox",
"zip:chrome": "mkdir -p dist-zip && zip -FSrj dist-zip/open-multiple-urls-$npm_package_version-chrome.zip dist-chrome",
"zip:all": "npm run zip:firefox && npm run zip:chrome"
},
"keywords": [],
"author": "https://github.com/htrinter/",
"devDependencies": {
"@types/jest": "^26.0.22",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.24.0",
"jest": "^26.6.3",
"parcel-bundler": "^1.12.5",
"parcel-plugin-clean-dist": "0.0.6",
"parcel-plugin-static-files-copy": "^2.6.0",
"prettier": "2.2.1",
"ts-jest": "^26.5.5",
"typescript": "^4.2.4",
"webextension-polyfill-ts": "^0.24.0"
},
"dependencies": {
"ts-debounce": "^4.0.0"
},
"staticFiles": {
"staticPath": [
{
"staticPath": "src/static"
},
{
"staticPath": "src/manifest/chrome/manifest.json",
"env": "chrome"
},
{
"staticPath": "src/manifest/firefox/manifest.json",
"env": "firefox"
}
],
"watcherGlob": "**"
}
}