forked from pixielabs/cavy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.11 KB
/
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
47
48
49
50
51
52
{
"name": "cavy",
"version": "4.0.2",
"description": "An integration test framework for React Native.",
"main": "index.js",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pixielabs/cavy.git"
},
"keywords": [
"react",
"react native",
"ios",
"android",
"integration tests",
"testing",
"test",
"specs"
],
"peerDependencies": {
"react-native": ">= 0.59.0 <= 0.66.0",
"react": "^16.8.3 || ^17.0.0"
},
"author": "Pixie Labs",
"license": "MIT",
"bugs": {
"url": "https://github.com/pixielabs/cavy/issues"
},
"homepage": "https://github.com/pixielabs/cavy#readme",
"dependencies": {
"hoist-non-react-statics": "^3.3.0",
"prop-types": "^15.5.10"
},
"devDependencies": {
"@babel/runtime": "^7.4.3",
"babel-jest": "^27.3.1",
"jest": "^27.3.1",
"metro-react-native-babel-preset": "^0.66.2",
"react": "^17.0.2",
"regenerator-runtime": "^0.13.9"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/sample-app/",
"/test/CavyTester/"
]
}
}