-
Notifications
You must be signed in to change notification settings - Fork 108
/
Copy pathpackage.json
52 lines (52 loc) · 1.27 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
47
48
49
50
51
52
{
"name": "enzyme-example-jest",
"version": "0.1.0",
"description": "Example project with React + Enzyme + Jest",
"main": "build/index.js",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lelandrichardson/enzyme-example-jest.git"
},
"author": "Leland Richardson <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/lelandrichardson/enzyme-example-jest/issues"
},
"homepage": "https://github.com/lelandrichardson/enzyme-example-jest#readme",
"devDependencies": {
"babel": "^6.3.26",
"babel-jest": "^6.0.1",
"babel-preset-airbnb": "^1.0.1",
"enzyme": "^2.0.0",
"jest": "^0.1.40",
"jest-cli": "^0.8.2",
"react": "^0.14.7",
"react-addons-test-utils": "^0.14.7"
},
"dependencies": {
"react": "^0.14.7",
"react-dom": "^0.14.7"
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"unmockedModulePathPatterns": [
"react",
"react-dom",
"react-addons-test-utils",
"fbjs",
"enzyme",
"cheerio",
"htmlparser2",
"underscore",
"lodash",
"domhandler",
"object.assign",
"define-properties",
"function-bind",
"object-keys"
]
}
}