-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.75 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@react-native-oh-tpl/react-native-modal-popover",
"version": "2.1.3-0.0.1",
"description": "Pure JS popover component for react-native",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"react-native": "src/index.ts",
"files": [
"lib/*",
"src/*"
],
"harmony": {
"alias": "react-native-modal-popover"
},
"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": {
"clean": "rm -rf ./build/*",
"build": "tsc",
"watch": "tsc --watch",
"prepublishOnly": "yarn build",
"prettier": "prettier --check .",
"lint": "eslint .",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/config-conventional": "^17.3.0",
"@react-native-community/eslint-config": "^3.2.0",
"@types/lodash": "^4.14.191",
"@types/prop-types": "^15.7.5",
"@types/react": "^18.0.26",
"@types/react-native": "^0.70.8",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"commitlint": "^17.3.0",
"eslint": "^8.30.0",
"husky": "^8.0.2",
"prettier": "^2.8.1",
"pretty-quick": "^3.1.3",
"react": "^17.0.2",
"react-native": "^0.65.1",
"typescript": "^4.9.4"
},
"peerDependencies": {
"react": ">16.0.0",
"react-native": ">0.50.0"
},
"dependencies": {
"lodash": ">4.17.0",
"prop-types": "^15.8.1",
"react-native-modal-popover": "^2.1.3"
}
}