-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 833 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
{
"name": "react-quickcheck",
"version": "0.0.1",
"description": "Property-based testing for React components",
"author": "David McCabe <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/davidmccabe/react-quickcheck"
},
"bugs": {
"url": "https://github.com/davidmccabe/react-quickcheck/issues"
},
"keywords": [
"react",
"test",
"testing",
"unit",
"quickcheck"
],
"private": true,
"license": "MIT",
"devDependencies": {
"jest-cli": "^0.2.0",
"jsverify": "^0.4.6",
"react": "^0.12.1",
"react-tools": "^0.12.1"
},
"jest": {
"scriptPreprocessor": "<rootDir>/preprocessor.js",
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react"
]
},
"scripts": {
"test": "node node_modules/.bin/jest"
}
}