-
-
Notifications
You must be signed in to change notification settings - Fork 451
/
package.json
62 lines (62 loc) · 1.43 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
{
"name": "react-native-collapsible",
"version": "1.6.2",
"description": "Animated collapsible component for React Native using the Animated API. Good for accordions, toggles etc",
"keywords": [
"react-native",
"react-component",
"react-native-component",
"react",
"mobile",
"ios",
"android",
"ui",
"collapse",
"collapsible",
"toggle",
"accordion"
],
"repository": {
"type": "git",
"url": "https://oblador@github.com/oblador/react-native-collapsible.git"
},
"author": "Joel Arvidsson <joel@oblador.se>",
"license": "MIT",
"bugs": {
"url": "https://github.com/oblador/react-native-collapsible/issues"
},
"homepage": "https://github.com/oblador/react-native-collapsible",
"main": "Collapsible.js",
"types": "index.d.ts",
"scripts": {
"lint": "eslint --ext js,ts ."
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@react-native/babel-preset": "0.75.2",
"@react-native/eslint-config": "0.75.2",
"eslint": "^8.19.0",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"react": "18.3.1",
"react-native": "0.75.2",
"typescript": "5.0.4"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"git add"
]
}
}