-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.44 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
42
43
44
45
46
47
48
49
50
{
"name": "webonacci",
"version": "987.0.0",
"description": "",
"main": "src/manifest.json",
"engines": {
"node": ">=8"
},
"scripts": {
"lint": "standard",
"start": "webpack --watch",
"build": "webpack",
"build:prod": "NODE_ENV=production webpack",
"test": "node test/run.js | tap-spec",
"test:unit": "tape test/unit/*.js | tap-spec",
"test:chrome": "SELENIUM_BROWSER=chrome node test/run.js | tap-spec",
"test:driver": "node test/driver.js | grep 'AHOY WEB CONSOLE!'",
"test:driver:chrome": "SELENIUM_BROWSER=chrome npm run test:driver",
"test:e2e": "node test/e2e/*.run.js",
"test:e2e:chrome": "SELENIUM_HEADLESS=false SELENIUM_BROWSER=chrome node test/e2e/*.run.js",
"clean": "rm -rf dist"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.5",
"copy-webpack-plugin": "^5.0.2",
"css-loader": "^2.1.1",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"promise-retry": "^1.1.1",
"selenium-webdriver": "^4.0.0-alpha.1",
"standard": "^12.0.1",
"style-loader": "^0.23.1",
"tap-spec": "^5.0.0",
"tape": "^4.10.1",
"tape-catch": "^1.0.6",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0"
},
"dependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6",
"redux": "^4.0.1",
"webextension-polyfill": "^0.4.0"
}
}