forked from dvijeniii05/carousel-with-pagination-rn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.97 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
{
"name": "carousel-with-pagination-rn",
"version": "1.1.8",
"description": "Custom carousel with pagination for React-Native",
"homepage": "https://github.com/dvijeniii05/carousel-with-pagination-rn/blob/main/README.md",
"keywords": [
"react-component",
"react-native",
"ios",
"android",
"swiper",
"custom-carousel",
"carousel"
],
"main": "lib/commonjs/index.js",
"types": "lib/typescript/index.d.ts",
"scripts": {
"test": "jest",
"test:coverageReport": "jest --collectCoverage --coverageReporters \"lcov\"",
"clean": "rm -rf dist",
"build": "npm run clean && tsc && cp package.json README.md carousel-with-pagination-rn.podspec ./dist",
"prepack": "bob build"
},
"author": "veryrare104",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/runtime": "^7.14.6",
"@tsconfig/react-native": "^2.0.3",
"@types/jest": "^29.4.0",
"@types/react": "^18.0.28",
"@types/react-native": "^0.71.3",
"@types/react-test-renderer": "^18.0.0",
"babel-jest": "^29.4.3",
"jest": "^29.4.3",
"metro-react-native-babel-preset": "^0.66.1",
"react": "^18.2.0",
"react-native": "^0.71.0",
"react-native-builder-bob": "^0.20.3",
"react-native-gesture-handler": "^2.9.0",
"react-native-testing-library": "^6.0.0",
"react-test-renderer": "^18.2.0",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-gesture-handler": "*"
},
"react-native": "src/index.ts",
"module": "lib/module/index.js",
"files": [
"src",
"lib",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__"
],
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.json"
}
]
]
},
"eslintIgnore": [
"node_modules/",
"lib/"
]
}