-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.75 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.75 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "react-page-object",
"version": "1.1.0",
"description": "Declarative integration testing for React",
"main": "dist/index.js",
"scripts": {
"test": "jest --watch",
"webpack": "node_modules/.bin/webpack",
"release": "npm run webpack && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IntrepidPursuits/react-page-object.git"
},
"keywords": [
"page-object",
"react",
"test"
],
"author": "David Rodriguez Fuentes",
"license": "MIT",
"bugs": {
"url": "https://github.com/IntrepidPursuits/react-page-object/issues"
},
"homepage": "https://github.com/IntrepidPursuits/react-page-object#readme",
"dependencies": {},
"devDependencies": {
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-jest": "^20.0.3",
"babel-loader": "^6.2.10",
"babel-polyfill": "^6.20.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.16.0",
"clean-webpack-plugin": "^0.1.15",
"enzyme": "^2.8.2",
"eslint": "^3.12.2",
"eslint-config-react-app": "^0.5.0",
"eslint-loader": "^1.6.1",
"eslint-plugin-flowtype": "^2.29.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.8.0",
"jasmine-core": "^2.5.2",
"jest": "^20.0.3",
"phantomjs-prebuilt": "^2.1.14",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-router-dom": "^4.1.1",
"react-test-renderer": "^15.5.4",
"regenerator-runtime": "^0.10.5",
"webpack": "^1.14.0"
},
"peerDependencies": {
"enzyme": "^2.8.2"
},
"babel": {
"presets": [
"latest",
"react"
]
},
"eslintConfig": {
"extends": "react-app"
},
"jest": {
"testURL": "http://localhost"
}
}