-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
38 lines (38 loc) · 879 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
34
35
36
37
38
{
"name": "react-tdd",
"version": "1.0.0",
"description": "React TDD Tutorial",
"main": "index.js",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alayor/React-TDD.git"
},
"author": "Alonso A. Ortega",
"license": "ISC",
"bugs": {
"url": "https://github.com/alayor/React-TDD/issues"
},
"jest": {
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest"
},
"setupFiles": [
"./src/setupTests.js"
]
},
"homepage": "https://github.com/alayor/React-TDD#readme",
"dependencies": {
"babel-jest": "^21.2.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.2",
"jest": "^21.2.1",
"jest-cli": "^21.2.1",
"react": "^16.0.0",
"react-dom": "^16.0.0"
}
}