-
Notifications
You must be signed in to change notification settings - Fork 92
/
package.json
45 lines (45 loc) · 1.09 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
{
"name": "react-native-material-menu",
"version": "2.0.0",
"description": "Material Menu for React Native",
"main": "dist/index.js",
"files": [
"dist"
],
"keywords": [
"react-native",
"react",
"menu",
"material-menu",
"react-component",
"material",
"dropdown"
],
"author": "Maksim Milyutin <[email protected]> (https://github.com/mxck)",
"license": "MIT",
"scripts": {
"build": "rimraf dist && tsc",
"prepublishOnly": "npm run build",
"prettify": "prettier --write 'src/**/*.(js|tsx|ts)' && eslint 'src/**/*.{js,ts,tsx}'"
},
"devDependencies": {
"@react-native-community/eslint-config": "~3.0.0",
"@types/react": "^17.0.19",
"@types/react-native": "^0.64.13",
"eslint": "~7.32.0",
"prettier": "~2.3.0",
"rimraf": "~3.0.0",
"typescript": "~4.3.5"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"bugs": {
"url": "https://github.com/mxck/react-native-material-menu/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/mxck/react-native-material-menu.git"
}
}