-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
39 lines (39 loc) · 938 Bytes
/
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
{
"name": "react-native-bottom-modal",
"version": "0.5.6",
"description": "React native bottom modal component",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/Vidlec/react-native-bottom-modal.git"
},
"author": "Josef Vidlák",
"license": "MIT",
"private": false,
"scripts": {
"build": "tsc",
"clean": "rm -rf lib"
},
"devDependencies": {
"@types/react": "^16.9.23",
"@types/react-native": "^0.60.25",
"prettier": "^1.19.1",
"react": "^16.13.0",
"tslint": "^6.1.0",
"typescript": "^3.8.3",
"react-spring": "^8.0.27",
"react-native": ">=0.59",
"react-native-gesture-handler": "~1.5.0"
},
"peerDependencies": {
"react-native-gesture-handler": "~1.5.0",
"react": ">=16.8",
"react-native": ">=0.59",
"react-spring": "^8.0.27"
},
"dependencies": {}
}