forked from salarcode/SmartProxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.16 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
{
"name": "SmartProxy",
"description": "SmartProxy is a browser extension that will automatically enable/disable proxy for the sites you visit, based on customizable patterns.",
"devDependencies": {
"clean-webpack-plugin": "^1.0.1",
"copy-webpack-plugin": "^5.1.1",
"eslint": "^4.7.0",
"terser-webpack-plugin": "^1.4.3",
"ts-loader": "^5.4.5",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
},
"scripts": {
"lint": "eslint ./src",
"build": "webpack --env.browser=chrome",
"build-ff": "webpack --env.browser=firefox",
"build-ff:watch": "webpack --watch --env.browser=firefox",
"build-ff-unlisted": "webpack --env.browser=firefox-unlisted",
"build-ch": "webpack --env.browser=chrome",
"build-ch:watch": "webpack --watch --env.browser=chrome",
"build-ed": "webpack --env.browser=edge",
"build-ed:watch": "webpack --watch --env.browser=edge",
"build-op": "webpack --env.browser=opera",
"build-op:watch": "webpack --watch --env.browser=opera",
"test": "npm run lint"
},
"license": "GPL-3.0",
"dependencies": {
"tsc": "^1.20150623.0",
"typescript": "^3.7.4",
"web-ext-types": "^3.2.1"
}
}