-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
40 lines (40 loc) · 921 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
{
"name": "react-native-test-utils",
"version": "1.4.0",
"description": "Testing util library for easy react native component testing",
"main": "index.js",
"scripts": {
"test": "jest"
},
"keywords": [
"react",
"native",
"jest",
"test"
],
"author": "Matthew Sessions <[email protected]> (http://www.matthewsessions.com/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/shichongrui/react-native-test-utils.git"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-test-renderer": "*"
},
"devDependencies": {
"babel-jest": "^23.4.2",
"babel-preset-react-native": "4.0.0",
"jest": "^23.4.1",
"react": "16.4.2",
"react-native": "^0.56.0",
"react-test-renderer": "16.4.2"
},
"dependencies": {
"css-selector-parser": "^1.3.0"
},
"jest": {
"preset": "react-native"
}
}