-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
48 lines (48 loc) · 1.32 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
{
"name": "react-native-zoom-reanimated",
"version": "1.4.8",
"description": "Zoom component on react-native + react-native-reanimated + react-native-gesture-handler",
"keywords": [
"zoom",
"react-native",
"react-native-reanimated",
"react-native-gesture-handler"
],
"homepage": "https://github.com/kesha-antonov/react-native-zoom-reanimated",
"repository": {
"type": "git",
"url": "react-native-zoom-reanimated"
},
"license": "MIT",
"author": "Kesha Antonov",
"main": "src/index.tsx",
"files": [
"README.md",
"LICENSE",
"package.json",
"src/"
],
"scripts": {
"autofix": "eslint -c .eslintrc.js --ext .ts,.tsx --fix .",
"bump": "npm version patch",
"lint": "eslint -c .eslintrc.js --ext .ts,.tsx .",
"publish": "npm publish",
"_prepublishOnly": "jest && npm run lint",
"test": "jest"
},
"devDependencies": {
"@react-native-community/eslint-config": "^3.2.0",
"@types/react": "^18.2.45",
"@types/react-native": "^0.72.8",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.29.1",
"jest": "^29.7.0",
"react-native-gesture-handler": "^2.14.0",
"react-native-reanimated": "^3.6.1",
"typescript": "^5.3.3"
},
"peerDependencies": {
"react-native-gesture-handler": "*",
"react-native-reanimated": ">=2.0.0"
}
}