forked from mxck/react-native-material-menu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.62 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
{
"name": "react-native-material-menu",
"version": "1.1.4",
"description": "Material Menu for React Native",
"main": "src/index.js",
"keywords": [
"react-native",
"react",
"menu",
"material-menu",
"react-component",
"material",
"dropdown"
],
"author": "Maksim Milyutin <[email protected]> (https://github.com/mxck)",
"license": "MIT",
"scripts": {
"prettify": "import-sort --write 'src/**/*.js' && prettier --write 'src/**/*.js' && eslint 'src/**/*.js'"
},
"devDependencies": {
"babel-eslint": "~10.1.0",
"eslint": "~6.8.0",
"eslint-config-airbnb": "~18.1.0",
"eslint-config-prettier": "~6.10.0",
"eslint-plugin-import": "~2.20.0",
"eslint-plugin-jsx-a11y": "~6.2.0",
"eslint-plugin-react": "~7.19.0",
"eslint-plugin-react-hooks": "~3.0.0",
"husky": "~4.2.0",
"import-sort": "~6.0.0",
"import-sort-cli": "~6.0.0",
"import-sort-parser-babylon": "~6.0.0",
"import-sort-parser-typescript": "~6.0.0",
"import-sort-style-pietile": "~1.2.0",
"lint-staged": "~10.1.0",
"prettier": "~2.0.0"
},
"peerDependencies": {
"react": ">= 16.3.0",
"react-native": ">= 0.54.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx}": [
"import-sort --write",
"prettier --write",
"git add"
],
"README.md": [
"prettier --write",
"git add"
]
},
"bugs": {
"url": "https://github.com/mxck/react-native-material-menu/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/mxck/react-native-material-menu.git"
}
}