-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.21 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
{
"name": "react-native-table-gen",
"version": "1.0.2",
"description": "React-native table generator",
"main": "index.js",
"scripts": {
"test": "jest --coverage"
},
"keywords": [
"react-native",
"table"
],
"author": "Sammy Sium ([email protected])",
"license": "ISC",
"peerDependencies": {
"prop-types": "^15.7.2",
"react": "^16.7.0",
"react-native": "^0.57.8"
},
"devDependencies": {
"@babel/preset-react": "^7.10.4",
"babel-jest": "^26.1.0",
"babel-plugin-import-rename": "^1.0.1",
"babel-preset-react-native": "^4.0.1",
"jest": "^26.1.0",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-native": "^0.63.1",
"react-native-testing-library": "^2.1.1",
"react-test-renderer": "^16.13.1"
},
"jest": {
"preset": "react-native",
"coverageReporters": [
"text",
"cobertura",
"lcov",
"json"
],
"moduleDirectories": [
"node_modules"
],
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/react-native/jest/preprocessor.js"
},
"transformIgnorePatterns": [
"node_modules/(?!((jest-)?react-native))"
]
},
"publishConfig": { "registry": "https://npm.pkg.github.com/" }
}