forked from mxck/react-native-material-menu
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
77 lines (77 loc) · 1.88 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
70
71
72
73
74
75
76
77
{
"name": "react-native-enhanced-popup-menu",
"version": "0.7.0",
"description": "Popup Menu for React Native",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"homepage": "https://github.com/likern/react-native-enhanced-popup-menu",
"license": "Apache-2.0",
"contributors": [
{
"name": "Maksim Milyutin (original author)",
"email": "[email protected]"
},
{
"name": "Victor Malov (current maintainer)",
"email": "[email protected]",
"url": "https://medium.com/scriply"
}
],
"scripts": {
"test": "jest",
"build:index": "npx tsc -d --emitDeclarationOnly ./src/index.ts",
"prepack": "npx tsc",
"postpack": "npx rimraf dist/"
},
"keywords": [
"react-native",
"react",
"menu",
"material-menu",
"react-component",
"material",
"popup",
"popup-menu",
"dropdown"
],
"files": [
"NOTICE",
"LICENSE",
"dist/"
],
"peerDependencies": {
"react": ">= 16.3.0",
"react-native": ">= 0.54.0"
},
"dependencies": {},
"bugs": {
"url": "https://github.com/likern/react-native-enhanced-popup-menu/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/likern/react-native-enhanced-popup-menu.git"
},
"devDependencies": {
"@testing-library/react-native": "^4.0.9",
"@types/react-native": "^0.62.13",
"babel-eslint": "~8.2.0",
"eslint": "~4.19.0",
"eslint-config-airbnb": "~17.0.0",
"eslint-config-prettier": "~2.9.0",
"eslint-plugin-import": "~2.13.0",
"eslint-plugin-jsx-a11y": "~6.1.1",
"eslint-plugin-react": "~7.10.0",
"jest": "^24.9.0",
"prettier": "~1.13.7",
"react-test-renderer": "^16.9.0",
"typescript": "^3.8.3"
},
"resolutions": {
"minimist": "^1.2.5",
"acorn": "^6.4.1",
"kind-of": "^6.0.3",
"handlebars": "^4.3.0",
"js-yaml": "^3.13.1",
"lodash": "^4.17.12"
}
}