-
Notifications
You must be signed in to change notification settings - Fork 90
/
package.json
69 lines (69 loc) · 1.78 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
68
69
{
"name": "react-native-popover-view",
"version": "5.1.9",
"description": "A <Popover /> component for react-native iOS, Android, and Web",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Peter Steffey <[email protected]> (https://github.com/steffeydev)",
"keywords": [
"react-component",
"react-native",
"ios",
"android",
"ui",
"popover",
"modal"
],
"license": "MIT",
"scripts": {
"watch": "tsc --watch",
"build": "tsc",
"tsc": "tsc",
"start": "node_modules/react-native/packager/packager.sh",
"test": "jest",
"lint": "eslint src",
"prepare": "patch-package",
"prepublishOnly": "tsc"
},
"jest": {
"preset": "react-native",
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"collectCoverage": true,
"coverageReporters": [
"json",
"html"
]
},
"repository": {
"type": "git",
"url": "[email protected]:steffeydev/react-native-popover-view.git"
},
"devDependencies": {
"@types/node": "^14.0.11",
"@types/react": "^17.0.3",
"@types/react-native": "^0.65.1",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"enzyme-to-json": "^3.3.5",
"eslint": "^7.24.0",
"eslint-plugin-react": "^7.23.2",
"jest": "^26.6.3",
"jest-serializer-enzyme": "^1.0.0",
"patch-package": "^6.2.2",
"postinstall-postinstall": "^2.1.0",
"react": "^17.0.2",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^17.0.2",
"react-native": "^0.65.1",
"react-test-renderer": "^17.0.2",
"typescript": "^4.2.4"
},
"dependencies": {
"prop-types": "^15.8.1",
"deprecated-react-native-prop-types": "^2.3.0"
}
}