-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 906 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 906 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
35
36
37
38
{
"name": "react-jest-examples",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"test": "TZ=Asia/Tokyo jest --verbose"
},
"dependencies": {
"axios": "^0.16.2",
"react": "^15.6.1",
"react-dom": "^15.6.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-jest": "^20.0.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"enzyme": "^2.9.1",
"jest": "^20.0.4",
"nock": "^9.0.14",
"react-test-renderer": "^15.6.1"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js",
"!**/__tests__/**"
],
"testPathIgnorePatterns": [
"<rootDir>[/\\\\](build|docs|node_modules)[/\\\\]"
],
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"
],
"testRegex": "/__tests__/.*\\.(test|spec)\\.js$"
}
}