-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.79 KB
/
package.json
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
{
"name": "censorship-detector",
"description": "A browser extension to detect website censorship as you surf.",
"author": "Karim Rahal",
"license": "MIT",
"version": "1.0.0",
"private": true,
"scripts": {
"build": "npm-run-all build:*",
"build:firefox": "BROWSER=firefox NODE_ENV=production webpack --config webpack.config.js",
"build:chrome": "BROWSER=chrome NODE_ENV=production webpack --config webpack.config.js",
"release": "npm-run-all release:*",
"release:firefox": "web-ext build -o --source-dir=./dist/firefox/production/ --artifacts-dir=./releases/firefox",
"release:chrome": "web-ext build -o --source-dir=./dist/chrome/production/ --artifacts-dir=./releases/chrome",
"watch:firefox": "BROWSER=firefox NODE_ENV=development webpack --watch --config webpack.config.js",
"watch:chrome": "BROWSER=chrome NODE_ENV=development webpack --watch --config webpack.config.js",
"run:firefox": "web-ext run -s ./dist/firefox/development/",
"lint": "npm-run-all lint:*",
"lint:firefox": "addons-linter ./dist/firefox/production/ --self-hosted",
"lint:chrome": "addons-linter ./dist/chrome/production/ --self-hosted"
},
"dependencies": {
"@akashbabu/lfu-cache": "^1.0.2",
"base64url": "^3.0.1",
"detect-browser": "^5.2.0",
"dns-packet": "^5.2.2",
"is-ip": "^3.1.0"
},
"devDependencies": {
"addons-linter": "^3.2.0",
"clean-webpack-plugin": "*",
"copy-webpack-plugin": "^9.0.0",
"html-webpack-plugin": "^5.3.1",
"merge-jsons-webpack-plugin": "*",
"npm-run-all": "^4.1.5",
"web-ext": "^6.7.0",
"webextension-polyfill": "^0.8.0",
"webpack": "^5.37.1",
"webpack-cli": "^4.7.0"
}
}