-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.29 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.29 KB
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
{
"name": "wat-chrome-plugin",
"version": "1.0.0",
"description": "This plugin is used to record E2E tests on any web site",
"main": "eventPage.js",
"scripts": {
"prod": "webpack --config webpack/prod.config.js",
"debug": "webpack --config webpack/debug.config.js",
"watch": "webpack --watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webautotester/chrome-plugin.git"
},
"author": "Xavier Blanc",
"license": "MIT",
"bugs": {
"url": "https://github.com/webautotester/chrome-plugin/issues"
},
"homepage": "https://github.com/webautotester/chrome-plugin#readme",
"dependencies": {
"axios": "^0.16.2",
"js-sha256": "^0.8.0",
"react": "^15.6.1",
"react-bootstrap": "^0.31.3",
"react-dom": "^15.6.1",
"react-router-bootstrap": "^0.24.4",
"react-router-dom": "^4.2.2"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"copy-webpack-plugin": "^4.0.1",
"eslint": "^4.6.1",
"eslint-plugin-react": "^7.3.0",
"webpack": "^3.5.6",
"webpack-merge": "^4.1.0"
}
}