-
Notifications
You must be signed in to change notification settings - Fork 127
/
package.json
87 lines (87 loc) · 2.49 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
81
82
83
84
85
86
87
{
"name": "react-native-material-bottom-navigation",
"version": "1.0.5",
"description": "A beautiful, customizable and easy-to-use Material Design Bottom Navigation for react-native.",
"main": "index.js",
"files": [
"index.js",
"index.d.ts",
"flow-typed/",
"lib/",
"docs/"
],
"scripts": {
"docs:gen:api": "./scripts/docgen",
"test": "jest --all --env=jsdom",
"test:watch": "jest --watch --env=jsdom",
"test:ci": "export JEST_JUNIT_OUTPUT=\"coverage/junit/js-test-results.xml\" && jest --env=jsdom --runInBand --ci --coverage --testResultsProcessor=\"jest-junit\"",
"lint": "eslint .",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"contributors:check": "all-contributors check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/timomeh/react-native-material-bottom-navigation.git"
},
"bugs": {
"url": "https://github.com/timomeh/react-native-material-bottom-navigation/issues"
},
"author": "Timo Mämecke <maemecketimo@gmail.com>",
"license": "MIT",
"dependencies": {
"prop-types": "^15.6.1"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"all-contributors-cli": "^5.4.1",
"babel-eslint": "^8.2.2",
"babel-jest": "18.0.0",
"babel-preset-react-native": "1.9.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.18.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.7.0",
"eslint-plugin-react-native": "^3.2.1",
"jest": "22.4.0",
"jest-junit": "^3.6.0",
"prettier": "^1.10.2",
"react": "^16.2.0",
"react-docgen": "^2.20.1",
"react-docgen-markdown-renderer": "^1.0.2",
"react-dom": "^16.2.0",
"react-native": "^0.54.2",
"react-native-mock": "^0.3.1",
"react-native-mock-render": "0.0.22",
"react-test-renderer": "~15.4.0"
},
"types": "./index.d.ts",
"jest": {
"preset": "react-native",
"testURL": "http://localhost",
"setupFiles": [
"<rootDir>/setupTests.js"
],
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/react-native/jest/preprocessor.js"
},
"modulePathIgnorePatterns": [
"<rootDir>/examples/Playground/node_modules"
]
},
"keywords": [
"react-native",
"material",
"bottomnavigation",
"bottom navigation",
"ios",
"android",
"react-component",
"react-navigation"
]
}