forked from doomsower/react-native-modal-popover
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.19 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
{
"name": "react-native-modal-popover",
"version": "0.0.6",
"description": "Pure JS popover component for react-native",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/doomsower/react-native-modal-popover.git"
},
"keywords": [
"react",
"react-native",
"popover",
"modal"
],
"author": "Konstantin Kuznetsov",
"license": "MIT",
"bugs": {
"url": "https://github.com/doomsower/react-native-modal-popover/issues"
},
"homepage": "https://github.com/doomsower/react-native-modal-popover#readme",
"scripts": {
"compile": "rm -rf ./build/* && tsc",
"prepublish": "yarn run compile",
"tsc:watch": "yarn run tsc --watch"
},
"devDependencies": {
"@types/lodash": "^4.14.85",
"@types/lodash.debounce": "^4.0.3",
"@types/react": "^16.0.22",
"@types/react-native": "^0.50.2",
"tslint": "^5.8.0",
"tslint-eslint-rules": "^4.1.1",
"tslint-react": "^3.2.0",
"typescript": "^2.6.1"
},
"peerDependencies": {
"react": ">16.2.0",
"react-native": ">0.52.0"
},
"dependencies": {
"@types/prop-types": "^15.5.2",
"lodash.debounce": "^4.0.8",
"prop-types": "^15.6.0"
}
}