-
Notifications
You must be signed in to change notification settings - Fork 103
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.48 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.48 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
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-swiper-flatlist",
"version": "3.2.5",
"main": "index.ts",
"license": "Apache-2.0",
"description": "React native swiper flatlist component",
"author": "Gustavo Gard <gusgard.it@gmail.com> (https://github.com/gusgard)",
"scripts": {
"lint": "eslint index.ts src example/scripts example/src --ext .js,.ts,.tsx",
"lint:fix": "pnpm lint --fix",
"test": "jest",
"test:watch": "jest --watch",
"start": "echo ----- Check example folder ----- 👻",
"publish": "npm publish",
"publish:beta": "npm publish --tag beta"
},
"devDependencies": {
"@react-native-community/eslint-config": "^3.2.0",
"@react-native/babel-preset": "^0.78.0",
"@testing-library/react-native": "^13.3.0",
"@types/jest": "^29.5.0",
"@types/react": "^19.0.0",
"babel-jest": "^29.7.0",
"eslint": "^8.19.0",
"eslint-plugin-detox": "^1.0.0",
"eslint-plugin-ft-flow": "^2.0.3",
"eslint-plugin-prettier": "^4.2.5",
"jest": "^29.7.0",
"prettier": "^2.4.1",
"react": "19.0.0",
"react-native": "0.78.0",
"react-test-renderer": "19.0.0",
"typescript": "^5.4.0"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-native": ">=0.64.0"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json",
"node"
],
"transformIgnorePatterns": [
"node_modules/(?!\\.pnpm|((jest-)?react-native|@react-native(-community)?)/)"
],
"modulePathIgnorePatterns": [
"<rootDir>/example/",
"<rootDir>/old-rn-example/"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/gusgard/react-native-swiper-flatlist.git"
},
"bugs": {
"url": "https://github.com/gusgard/react-native-swiper-flatlist/issues"
},
"homepage": "https://github.com/gusgard/react-native-swiper-flatlist#readme",
"keywords": [
"react-native-swiper",
"react-native-swiper-flatlist",
"swiper flatlist",
"swiper",
"hooks",
"typescript",
"component",
"react native",
"react-native",
"flatlist",
"flatlist swiper",
"react",
"native",
"carousel",
"slider",
"scrollview",
"images",
"infinite",
"scroll",
"scrolling",
"images",
"cards",
"stack",
"android",
"ios"
],
"contributors": [
{
"name": "Gustavo Gard",
"email": "gusgard.it@gmail.com",
"url": "https://github.com/gusgard"
}
],
"packageManager": "pnpm@10.29.3"
}