forked from iRoachie/react-native-material-tabs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.65 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
{
"name": "react-native-material-tabs",
"version": "3.6.0",
"description": "Material Design implementation of Tabs",
"keywords": ["react", "react-native", "material-design", "tabs"],
"main": "./src/index.js",
"types": "./src/index.d.ts",
"files": ["src"],
"author": {
"name": "Kyle Roach",
"email": "[email protected]"
},
"license": "MIT",
"scripts": {
"flow": "flow check",
"lint": "eslint **/*.js",
"format": "eslint --fix **/*.js",
"test": "jest"
},
"dependencies": {
"prop-types": "^15.5.10",
"styled-components": "^2.3.0"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-jest": "21.2.0",
"babel-preset-react-native": "4.0.0",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.0",
"eslint": "^4.2.0",
"eslint-config-prettier": "^2.3.0",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-flowtype": "^2.34.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-prettier": "^2.1.2",
"eslint-plugin-react": "^7.1.0",
"eslint-plugin-react-native": "^2.3.2",
"flow-bin": "^0.56.0",
"jest": "21.2.1",
"prettier": "^1.9.1",
"react": "16.0.0",
"react-dom": "^16.2.0",
"react-native": "^0.51.0",
"react-test-renderer": "^16.2.0"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"bugs": {
"url": "https://github.com/iRoachie/react-native-material-tabs/issues"
},
"homepage": "https://github.com/iRoachie/react-native-material-tabs#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/iRoachie/react-native-material-tabs.git"
},
"jest": {
"preset": "react-native"
}
}