-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
28 lines (28 loc) · 1.08 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
{
"devDependencies": {
"concurrently": "^5.2.0",
"gulp": "^4.0.2",
"gulp-zip": "^4.1.0",
"jshint": "^2.11.0",
"mocha": "^5.0.0",
"mock-browser": "^0.92.14",
"web-ext": "^4.2.0",
"webpack": "^4.3.0",
"webpack-cli": "^3.3.11",
"webpack-node-externals": "^1.6.0"
},
"scripts": {
"build": "webpack",
"build:watch": "webpack --watch",
"develop:watch": "concurrently -k -p \"[{name}]\" -n \"Webpack,FireFox web-ext\" -c \"cyan.bold,green.bold\" \"yarn run build:watch\" \"npm run web-ext\"",
"web-ext": "web-ext run --firefox-profile=extension-developer",
"develop": "yarn run web-ext",
"dist": "gulp archive",
"build:test": "webpack --config webpack.config.test.js",
"build:test:watch": "webpack --config webpack.config.test.js --watch",
"test": "yarn run build:test && mocha dist/tests.js",
"test:watch": "concurrently -k -p \"[{name}]\" -n \"Webpack,Mocha\" -c \"cyan.bold,green.bold\" \"yarn run build:test:watch\" \"mocha --watch dist/tests.js\"",
"debug": "jshint --config .jshintrc src/"
},
"dependencies": {}
}