forked from jeremybarbet/react-native-modalize
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.74 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.74 KB
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
{
"name": "react-native-modalize",
"version": "1.2.3",
"description": "A modal that loves scrollable content.",
"main": "lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "rm -rf ./lib/* && yarn lint && tsc",
"prepublish": "yarn build",
"lint": "tslint 'src/**/*.ts?(x)'",
"postversion": "sh ./post-version.sh",
"watch:modalize": "yarn tsc --watch",
"watch:expo": "concurrently \"yarn watch:modalize\" \"yarn cpx 'src/**/*' 'examples/expo/node_modules/react-native-modalize' --watch\"",
"watch:react-native-navigation": "concurrently \"yarn watch:modalize\" \"yarn cpx 'src/**/*' 'examples/react-native-navigation/node_modules/react-native-modalize' --watch\"",
"watch:react-navigation": "concurrently \"yarn watch:modalize\" \"yarn cpx 'lib/**/*' 'examples/react-navigation/node_modules/react-native-modalize/lib' --watch\""
},
"keywords": [
"react-native",
"react",
"native",
"modal",
"android",
"ios",
"scrollview",
"flatlist",
"sectionlist",
"scroll",
"swipe",
"snap"
],
"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.9.5",
"@types/react-native": "0.60.19",
"concurrently": "5.0.0",
"cpx": "1.5.0",
"react": "16.10.2",
"react-native": "0.61.2",
"react-native-gesture-handler": "1.4.1",
"tslint": "5.20.0",
"tslint-config-airbnb": "5.11.2",
"typescript": "3.6.4"
},
"peerDependencies": {
"react": "> 15.0.0",
"react-native": "> 0.50.0",
"react-native-gesture-handler": "> 1.0.0"
}
}