forked from jeremybarbet/react-native-modalize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.24 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
{
"name": "react-native-modalize",
"version": "1.0.0-alpha.19",
"description": "A modal that loves ScrollViews.",
"main": "lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "rm -rf ./lib/* && yarn lint && tsc",
"start": "yarn run cpx 'src/**/*.{ts,tsx}' 'examples/react-native-navigation/node_modules/react-native-modalize' --watch",
"prepublish": "yarn build",
"lint": "tslint 'src/**/*.ts?(x)'",
"postversion": "sh ./post-version.sh"
},
"keywords": [
"react-native",
"native",
"modal",
"android",
"ios",
"scrollview"
],
"author": "Jérémy Barbet",
"license": "MIT",
"homepage": "https://github.com/jeremybarbet/react-native-modalize",
"repository": {
"type": "git",
"url": "https://github.com/jeremybarbet/react-native-modalize"
},
"devDependencies": {
"@types/react": "16.4.18",
"@types/react-native": "0.57.19",
"cpx": "1.5.0",
"react": "16.6.3",
"react-native": "0.57.8",
"react-native-gesture-handler": "1.0.12",
"tslint": "5.11.0",
"tslint-config-airbnb": "5.11.1",
"typescript": "3.2.2"
},
"peerDependencies": {
"react": "> 15.0.0",
"react-native": "> 0.50.0",
"react-native-gesture-handler": "> 1.0.0"
}
}