forked from oblador/react-native-collapsible
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.5 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
{
"name": "react-native-collapsible",
"version": "0.13.0",
"description": "Animated collapsible component for React Native using the Animated API. Good for accordions, toggles etc",
"main": "Collapsible.js",
"types": "index.d.ts",
"scripts": {
"test": "eslint *.js"
},
"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",
"devDependencies": {
"babel-eslint": "^8.2.6",
"eslint": "^5.2.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-flowtype": "^2.50.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-react": "^7.10.0",
"eslint-plugin-react-native": "^3.2.1",
"prettier": "^1.13.7",
"react": "16.4.1",
"react-native": "0.56.0"
},
"dependencies": {
"prop-types": "^15.6.2",
"react-native-draggable-flatlist": "git+https://github.com/jigaryadav/react-native-draggable-flatlist.git"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
}
}