-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
44 lines (44 loc) · 1.02 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
{
"name": "react-native-floating-action-bar",
"version": "1.1.3",
"description": "A React Native floating action bar.",
"main": "src/FloatingActionBar.js",
"scripts": {
"test": "echo \"Error: no test specified\"",
"lint": "eslint .",
"pretty-quick": "pretty-quick",
"publish-package": "npx np"
},
"keywords": [
"react-native",
"action",
"bar",
"floating"
],
"author": "Johan Haneveld",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged; ./scripts/pre-commit-lint.sh"
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"peerDependencies": {
"react": "^16.13.1",
"react-native": "^0.61.5"
},
"dependencies": {
"prop-types": "^15.7.2",
"react-native-vector-icons": "^6.6.0"
},
"devDependencies": {
"@react-native-community/eslint-config": "^0.0.7",
"eslint": "^6.8.0",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.3",
"prettier": "^2.0.1",
"pretty-quick": "^2.0.1"
}
}