-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 3.25 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
99
100
101
102
103
{
"name": "react-native-nested-list-view",
"version": "0.9.0",
"description": "Nested Listview for React native",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "jest",
"test-coverage": "jest && codecov",
"tslint": "tslint -p .",
"type-check": "tsc --noEmit",
"prepublishOnly": "tsc -p ./ --outDir dist/",
"add-react": "yarn add [email protected] && yarn add [email protected]",
"remove-react": "yarn remove react && yarn remove react-native",
"prettier-check": "prettier --check 'src/**/*.{ts, tsx}'",
"prettier-format": "prettier --write 'src/**/*.{ts, tsx}'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fjmorant/react-native-nested-listview.git"
},
"dependencies": {
"object-hash": "2.0.1",
"react-fast-compare": "2.0.4",
"shortid": "2.2.15",
"use-global-hook": "0.1.12"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"@babel/core": "7.8.4",
"@babel/runtime": "7.7.2",
"@types/jest": "25.1.1",
"@types/use-global-hook": "0.1.2",
"@types/object-hash": "1.3.1",
"@types/react": "16.9.19",
"@types/react-native": "0.60.22",
"@types/react-test-renderer": "16.9.1",
"@types/shortid": "0.0.29",
"babel-jest": "24.9.0",
"codecov": "3.6.5",
"istanbul": "0.4.5",
"istanbul-api": "2.1.6",
"istanbul-reports": "3.0.0",
"jest": "24.9.0",
"metro-react-native-babel-preset": "0.57.0",
"prettier": "1.19.1",
"prettier-eslint": "9.0.1",
"react": "16.9.0",
"react-native": "0.61.4",
"react-test-renderer": "16.12.0",
"ts-jest": "24.3.0",
"tslint": "5.20.1",
"typescript": "3.7.5"
},
"keywords": [
"react",
"native",
"list",
"nested"
],
"author": "Javier Morant",
"license": "MIT",
"bugs": {
"url": "https://github.com/fjmorant/react-native-nested-listview/issues"
},
"homepage": "https://github.com/fjmorant/react-native-nested-listview#readme",
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(js)$": "<rootDir>/node_modules/babel-jest",
"\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"transformIgnorePatterns": [
"node_modules/(?!(jest-)|react-native|react-navigation|react-clone-referenced-element|mobx-react|use-global-hook)"
],
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"modulePathIgnorePatterns": [
"<rootDir>/examples/"
],
"testPathIgnorePatterns": [
"\\.snap$",
"<rootDir>/node_modules/",
"<rootDir>/examples/",
"<rootDir>/lib/",
"<rootDir>/dist/"
],
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"globals": {
"ts-jest": {
"babelConfig": true
}
}
}
}