forked from lelandrichardson/enzyme-example-jest
-
Notifications
You must be signed in to change notification settings - Fork 82
/
package.json
46 lines (46 loc) · 1.15 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
{
"name": "enzyme-example-jest",
"version": "0.2.0",
"description": "Example project with React + Enzyme + Jest",
"keywords": [
"react",
"enzyme",
"jest",
"test"
],
"main": "build/index.js",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vjwilson/enzyme-example-jest"
},
"author": "Leland Richardson <leland.richardson@airbnb.com>",
"contributors": [
"Leland Richardson <leland.richardson@airbnb.com>",
"Van J. Wilson <van.wilson1992@alumni.unc.edu>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/vjwilson/enzyme-example-jest/issues"
},
"homepage": "https://github.com/vjwilson/enzyme-example-jest#readme",
"devDependencies": {
"babel": "^6.3.26",
"babel-jest": "^6.0.1",
"babel-polyfill": "^6.16.0",
"babel-preset-airbnb": "^1.0.1",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"enzyme": "^2.0.0",
"jest": "15.1.1",
"jest-cli": "15.1.1",
"react": "^0.14.7",
"react-addons-test-utils": "^0.14.7"
},
"dependencies": {
"react": "^0.14.7",
"react-dom": "^0.14.7"
}
}