-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 962 Bytes
/
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": "warc-boundaries",
"version": "1.0.0",
"description": "",
"main": "src/boundary-sidebar.js",
"dependencies": {
"lit-element": "^2.3.1"
},
"devDependencies": {
"html-webpack-plugin": "^4.3.0",
"jest": "^26.1.0",
"jest-electron": "^0.1.11",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"scripts": {
"webpack:test": "webpack --config test/webpack.test.config.js --display-error-details",
"jest": "jest test/bundle.test.js",
"test": "npm run webpack:test && npm run jest",
"test:debug": "npm run webpack:test && export DEBUG_MODE=1 && npm run jest",
"webpack-dev-server": "webpack-dev-server",
"dev": "webpack-dev-server --mode=development",
"prod": "webpack --mode=production"
},
"jest": {
"runner": "jest-electron/runner",
"testEnvironment": "jest-electron/environment"
},
"keywords": [],
"author": "",
"license": "ISC"
}