-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.27 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.27 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
{
"name": "react-native-cross-actionsheet",
"title": "Cross Platform Actionsheets backed by Native Android implementation",
"version": "1.1.0",
"description": "Simple to use, static API, cross platform ActionSheets using Native Android ActionSheets and ActionSheetIOS",
"main": "index.js",
"scripts": {
"prepublish": "tsc",
"compile": "tsc --noEmit",
"build_android": "cd android && gradle build",
"lint_fix": "eslint . --ext .ts,.tsx --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aelesia/react-native-cross-actionsheet.git",
"baseUrl": "https://github.com/aelesia/react-native-cross-actionsheet"
},
"keywords": [
"react-native",
"action",
"sheet",
"cross platform",
"android",
"native",
"BottomSheetDialog"
],
"author": {
"name": "aelesia",
"email": "aelesia@outlook.sg"
},
"license": "MIT",
"licenseFilename": "LICENSE",
"readmeFilename": "README.md",
"peerDependencies": {
"react": "^16.8.1",
"react-native": ">=0.60.0-rc.0 <1.0.x"
},
"devDependencies": {
"react": "^16.9.0",
"react-native": "^0.61.5",
"@types/react-native": "^0.62.13",
"typescript": "^3.9.5",
"eslint": "^7.1.0",
"@react-native-community/eslint-config": "^1.0.0"
}
}