-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (45 loc) · 997 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
39
40
41
42
43
44
45
46
{
"name": "react-testing-performance",
"version": "1.0.0",
"description": "A simple project for benchmarking Jest vs Mocha",
"author": {
"name": "Jonathan Kolb",
"email": "kolb0401@gmail.com",
"url": "http://jonathankolb.com"
},
"repository" : {
"type" : "git",
"url" : "https://github.com/smarter-travel-media/react-testing-benchmark.git"
},
"devDependencies": {
"babel": "^5.8.21",
"babel-jest": "^5.3.0",
"chai": "^3.2.0",
"jest-cli": "^0.4.18",
"jsdom": "^3.1.2",
"mocha": "^2.2.5",
"react": "^0.13.3"
},
"scripts": {
"jest": "jest",
"mocha": "mocha -R list --compilers js:babel/register"
},
"jest": {
"scriptPreprocessor": "node_modules/babel-jest",
"unmockedModulePathPatterns": [
"node_modules/react"
],
"testFileExtensions": [
"js",
"jsx"
],
"moduleFileExtensions": [
"js",
"jsx"
]
},
"engine": {
"node": "0.10.40",
"npm": "1.4.28"
}
}