forked from luokuning/react-native-snap-carousel
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.61 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.61 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
{
"name": "react-native-snap-carousel",
"version": "4.0.0-beta.6",
"description": "Swiper/carousel component for React Native with previews, multiple layouts, parallax images, performant handling of huge numbers of items, and more. Compatible with Android & iOS.",
"main": "lib/commonjs/index",
"module": "lib/module/index",
"types": "lib/typescript/index.d.ts",
"react-native": "src/index",
"source": "src/index",
"repository": {
"type": "git",
"url": "github.com/archriss/react-native-snap-carousel"
},
"scripts": {
"prepare": "bob build",
"lint": "eslint \"**/*.{js,ts,tsx}\""
},
"keywords": [
"react",
"native",
"carousel",
"slider",
"swiper",
"flatlist",
"scrollview",
"parallax",
"images",
"infinite",
"scroll",
"scrolling",
"items",
"edge",
"snap",
"card",
"cards",
"stack",
"deck",
"tinder",
"android",
"ios",
"snapping",
"component"
],
"author": "Benoit Delmaire <bdelmaire@archriss.com> (github.com/bd-arc)",
"license": "BSD-3-Clause",
"dependencies": {
"@types/react-addons-shallow-compare": "^0.14.22",
"react-addons-shallow-compare": "15.6.2"
},
"peerDependencies": {
"react": ">=16.0.0",
"react-native": ">=0.58.0"
},
"devDependencies": {
"@types/react": "^16.9.46",
"@types/react-native": "^0.63.4",
"@typescript-eslint/eslint-plugin": "3.8.0",
"@typescript-eslint/parser": "3.8.0",
"babel-eslint": "10.1.0",
"eslint": "7.6.0",
"eslint-config-standard": "14.1.1",
"eslint-config-standard-react": "9.2.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-react": "7.20.5",
"eslint-plugin-standard": "4.0.1",
"react": "16.13.1",
"react-native": "0.63.2",
"react-native-builder-bob": "^0.18.1",
"typescript": "^4.2.3"
},
"eslintIgnore": [
"node_modules/",
"lib/",
"example"
],
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
},
"homepage": "https://github.com/archriss/react-native-snap-carousel",
"bugs": {
"url": "https://github.com/archriss/react-native-snap-carousel/issues"
},
"readmeFilename": "README.md"
}