forked from callstack/react-native-testing-library
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.03 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.03 KB
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
{
"name": "react-native-testing-library",
"version": "1.12.0",
"description": "Simple React Native testing utilities helping you write better tests with less effort",
"main": "build/index.js",
"typings": "./typings/index.d.ts",
"repository": "git@github.com:callstack/react-native-testing-library.git",
"author": "Michał Pierzchała <thymikee@gmail.com>",
"license": "MIT",
"private": false,
"keywords": [
"react-native",
"react",
"test",
"integration"
],
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@callstack/eslint-config": "^8.0.0",
"@release-it/conventional-changelog": "^1.1.0",
"@types/react": "^16.7.11",
"@types/react-test-renderer": "^16.0.3",
"babel-jest": "^24.7.1",
"conventional-changelog-cli": "^2.0.11",
"dedent": "^0.7.0",
"eslint": "^6.7.2",
"flow-bin": "^0.107.0",
"flow-copy-source": "^2.0.6",
"jest": "^24.7.1",
"metro-react-native-babel-preset": "^0.52.0",
"react": "16.8.6",
"react-native": "0.60.4",
"react-test-renderer": "16.8.6",
"release-it": "^12.3.3",
"strip-ansi": "^5.2.0",
"typescript": "^3.7.3"
},
"dependencies": {
"pretty-format": "^24.0.0"
},
"peerDependencies": {
"react": ">=16.0.0",
"react-test-renderer": ">=16.0.0"
},
"scripts": {
"test": "jest",
"flow-check": "flow check",
"typescript-check": "tsc --noEmit --skipLibCheck --jsx react ./typings/__tests__/*",
"lint": "eslint src --cache",
"release": "release-it",
"prepublish": "yarn build && yarn copy-flowtypes",
"copy-flowtypes": "flow-copy-source --ignore __tests__/*.js src build",
"build": "rm -rf build; babel src --out-dir build --ignore 'src/__tests__/*'"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"js",
"json"
]
},
"greenkeeper": {
"ignore": [
"react",
"react-test-renderer",
"metro-react-native-babel-preset"
]
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}