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
59 lines (59 loc) · 2.16 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 2.16 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
56
57
58
59
{
"name": "open-multiple-urls",
"version": "1.5.6",
"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": "rimraf dist-firefox && NODE_ENV=firefox parcel build src/*.html --out-dir dist-firefox",
"build:chrome": "rimraf dist-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": "^27.5.1",
"@types/webextension-polyfill": "^0.8.3",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"eslint": "^8.16.0",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"parcel-bundler": "^1.12.5",
"parcel-plugin-clean-dist": "0.0.6",
"parcel-plugin-static-files-copy": "^2.6.0",
"prettier": "2.6.2",
"ts-jest": "^28.0.2",
"typescript": "^4.6.4",
"webextension-polyfill": "^0.9.0"
},
"dependencies": {
"rimraf": "^3.0.2",
"ts-debounce": "^4.0.0",
"url-knife": "^3.1.3"
},
"staticFiles": {
"staticPath": [
{
"staticPath": "src/static"
},
{
"staticPath": "src/manifest/chrome/manifest.json",
"env": "chrome"
},
{
"staticPath": "src/manifest/firefox/manifest.json",
"env": "firefox"
}
],
"watcherGlob": "**"
}
}