-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 818 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 818 Bytes
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
{
"name": "underdog-mocha-react",
"version": "1.5.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/underdogio/mocha-react.git"
},
"scripts": {
"test": "mocha --require babel-register --reporter dot",
"test/watch": "npm run test -- --watch"
},
"dependencies": {
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.9.1",
"mocha-jsdom": "^2.0.0",
"react-test-renderer": "^16.0.0"
},
"devDependencies": {
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0",
"expect": "^1.20.2",
"mocha": "^4.0.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"sinon": "^4.0.0"
},
"peerDependencies": {
"mocha": "^4.0.0",
"react": "^16.2.0",
"react-dom": "^16.2.0"
}
}