-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 887 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
{
"dependencies": {
"react": "~0.14.0",
"react-dom": "~0.14.0"
},
"scripts": {
"test": "jest"
},
"devDependencies": {
"babel-jest": "*",
"jest-cli": "^0.8.2",
"jest-webpack-alias": "^2.0.0",
"karma-babel-preprocessor": "^6.0.1",
"karma-phantomjs-launcher": "^0.2.2",
"karma-sourcemap-loader": "^0.3.6",
"karma-webpack": "^1.7.0",
"phantomjs": "^1.9.19",
"react-addons-test-utils": "~0.14.0"
},
"jest": {
"scriptPreprocessor": "node_modules/babel-jest",
"testRunner": "node_modules/jest-cli/src/testRunners/jasmine/jasmine2.js",
"unmockedModulePathPatterns": [
"node_modules/react",
"node_modules/react-dom",
"node_modules/react-addons-test-utils",
"node_modules/fbjs"
],
"testFileExtensions": [
"jest"
],
"moduleFileExtensions": [
"js",
"jsx"
]
}
}