forked from callstack/react-native-testing-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 3.15 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@testing-library/react-native",
"version": "12.3.3",
"description": "Simple and complete React Native testing utilities that encourage good testing practices.",
"main": "build/index.js",
"types": "build/index.d.ts",
"repository": {
"type": "git",
"url": "https://www.github.com/callstack/react-native-testing-library.git"
},
"homepage": "https://callstack.github.io/react-native-testing-library",
"author": "Michał Pierzchała <[email protected]>",
"contributors": [
"Maciej Jastrzębski <[email protected]> (https://github.com/mdjastrzebski)",
"Augustin Le Fèvre <[email protected]> (https://github.com/AugustinLF)",
"Pierre Zimmermann <[email protected]> (https://github.com/pierrezimmermannbam)",
"MattAgn <[email protected]> (https://github.com/MattAgn)"
],
"license": "MIT",
"keywords": [
"react-native",
"react",
"test",
"integration"
],
"files": [
"build/",
"jest-preset/",
"extend-expect.js",
"extend-expect.d.ts",
"pure.js",
"pure.d.ts",
"dont-cleanup-after-each.js",
"typings/index.flow.js"
],
"devDependencies": {
"@babel/cli": "^7.22.15",
"@babel/core": "^7.22.20",
"@babel/plugin-transform-flow-strip-types": "^7.22.5",
"@babel/preset-env": "^7.22.20",
"@babel/preset-flow": "^7.22.15",
"@babel/preset-react": "^7.22.15",
"@babel/preset-typescript": "^7.22.15",
"@callstack/eslint-config": "^14.1.0",
"@relmify/jest-serializer-strip-ansi": "^1.0.2",
"@types/jest": "^29.5.5",
"@types/react": "^18.2.21",
"@types/react-test-renderer": "^18.0.2",
"babel-jest": "^29.7.0",
"dedent": "^1.1.0",
"del-cli": "^5.0.0",
"eslint": "^8.21.0",
"eslint-plugin-flowtype": "^8.0.3",
"flow-bin": "~0.170.0",
"flow-copy-source": "^2.0.9",
"jest": "^29.7.0",
"react": "18.2.0",
"react-native": "0.72.4",
"react-test-renderer": "18.2.0",
"strip-ansi": "^6.0.1",
"typescript": "^5.2.2"
},
"dependencies": {
"jest-matcher-utils": "^29.7.0",
"pretty-format": "^29.7.0",
"redent": "^3.0.0"
},
"peerDependencies": {
"jest": ">=28.0.0",
"react": ">=16.8.0",
"react-native": ">=0.59",
"react-test-renderer": ">=16.8.0"
},
"peerDependenciesMeta": {
"jest": {
"optional": true
}
},
"scripts": {
"clean": "del build",
"test": "jest",
"test:ci": "jest --maxWorkers=2 --collectCoverage=true --coverage-provider=v8",
"test:react-17": "scripts/test_react_17",
"typecheck": "tsc",
"flow": "flow",
"copy-flowtypes": "cp typings/index.flow.js build",
"lint": "eslint src --cache",
"validate": "yarn lint && yarn typecheck && yarn test",
"prepublish": "yarn build",
"build:js": "babel src --out-dir build --extensions \".js,.ts,.jsx,.tsx\" --source-maps --ignore \"**/__tests__/**\"",
"build:js:watch": "yarn build:js --watch",
"build:ts": "tsc --build tsconfig.release.json",
"build:ts:watch": "yarn build:ts --watch --preserveWatchOutput",
"build": "yarn clean && yarn build:js && yarn build:ts && yarn copy-flowtypes",
"prepare": "yarn build"
},
"packageManager": "[email protected]"
}