-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
80 lines (80 loc) · 1.85 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
78
79
80
{
"name": "react-native-onscreen-navbar",
"version": "2.0.0",
"description": "Onscreen navigation bar customization component for Android",
"main": "lib/index.js",
"scripts": {
"precommit": "lint-staged",
"install-self-peers": "install-self-peers",
"lint": "eslint lib",
"lint:fix": "eslint lib --fix",
"flow": "flow"
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix",
"git add"
],
"*.json": [
"prettier --write",
"git add"
]
},
"repository": {
"url": "git+https://github.com/Jazmon/react-native-onscreen-navbar.git",
"type": "git"
},
"files": [
"android",
"README.md",
"navbar-example.gif",
"lib",
"LICENSE"
],
"keywords": [
"react-native",
"react-component",
"react-native-component",
"react",
"mobile",
"react",
"native",
"onscreen",
"on",
"screen",
"navbar",
"nav",
"bar",
"android",
"color",
"translucent"
],
"author": "Atte Huhtakangas <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Jazmon/react-native-onscreen-navbar/issues"
},
"homepage": "https://github.com/Jazmon/react-native-onscreen-navbar#readme",
"peerDependencies": {
"react": "^16.2.0",
"react-native": "^0.53.3"
},
"devDependencies": {
"@team-griffin/install-self-peers": "^1.1.1",
"babel-eslint": "^8.2.2",
"eslint": "^4.9.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-flowtype": "^2.46.1",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"eslint-plugin-react-native": "^3.2.1",
"flow-bin": "^0.66.0",
"husky": "^0.14.3",
"lint-staged": "^7.0.0",
"prettier": "^1.10.2"
},
"dependencies": {}
}