-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
99 lines (99 loc) · 2.69 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
{
"name": "react-native-nested-listview",
"version": "0.14.2",
"description": "Nested Listview for React native",
"main": "src/index.ts",
"types": "src/index.ts",
"scripts": {
"test": "jest",
"test-coverage": "jest && codecov",
"lint": "eslint ./src --ext .js,.jsx,.ts,.tsx",
"type-check": "tsc --noEmit",
"prepublishOnly": "tsc -p ./ --outDir dist/",
"prettier-check": "prettier --check 'src/**/*.{ts, tsx}'",
"prettier-format": "prettier --write 'src/**/*.{ts, tsx}'",
"check-all": "yarn lint && yarn type-check && yarn test",
"start-watch": "./start-watch.sh",
"stop-watch": "./stop-watch.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fjmorant/react-native-nested-listview.git"
},
"dependencies": {
"object-hash": "3.0.0"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"@babel/core": "7.19.3",
"@babel/runtime": "7.19.4",
"@commitlint/cli": "17.1.2",
"@commitlint/config-conventional": "17.1.0",
"@react-native-community/eslint-config": "3.1.0",
"@testing-library/jest-native": "5.0.0",
"@testing-library/react-native": "11.2.0",
"@types/jest": "29.1.2",
"@types/object-hash": "2.2.1",
"@types/react-native": "0.70.4",
"@types/react-test-renderer": "18.0.0",
"@types/use-global-hook": "0.1.5",
"@typescript-eslint/parser": "5.40.0",
"babel-jest": "29.1.2",
"codecov": "3.8.3",
"eslint": "8.25.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.1",
"istanbul": "0.4.5",
"istanbul-api": "3.0.0",
"istanbul-reports": "3.1.5",
"jest": "29.1.2",
"metro-react-native-babel-preset": "0.73.1",
"prettier": "2.7.1",
"prettier-eslint": "15.0.1",
"react": "18.2.0",
"react-native": "0.70.2",
"react-test-renderer": "18.2.0",
"typescript": "4.8.4"
},
"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",
"setupFilesAfterEnv": [
"@testing-library/jest-native/extend-expect"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"modulePathIgnorePatterns": [
"<rootDir>/examples/"
],
"testPathIgnorePatterns": [
"\\.snap$",
"<rootDir>/node_modules/",
"<rootDir>/examples/",
"<rootDir>/lib/",
"<rootDir>/dist/"
],
"coverageDirectory": "./coverage/",
"collectCoverage": true
}
}