forked from iRoachie/react-native-material-tabs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 1.92 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
{
"name": "react-native-material-tabs",
"version": "4.1.0",
"description": "Material Design implementation of Tabs",
"keywords": [
"react",
"react-native",
"material-design",
"tabs"
],
"main": "./src/index.ts",
"types": "./src/index.d.ts",
"files": [
"src"
],
"author": {
"name": "Kyle Roach",
"email": "[email protected]"
},
"license": "MIT",
"scripts": {
"check": "tsc",
"lint": "eslint --ext js,ts,tsx .",
"test": "jest"
},
"dependencies": {
"styled-components": "^4.3.2"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/runtime": "^7.4.5",
"@react-native-community/eslint-config": "^0.0.5",
"@types/enzyme": "^3.9.4",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jest": "^24.0.15",
"@types/react": "^16.8.22",
"@types/react-native": "^0.57.63",
"@types/react-test-renderer": "^16.8.2",
"@types/styled-components": "^4.1.16",
"babel-jest": "^24.8.0",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.1.0",
"eslint": "^5.16.0",
"husky": "^1.2.0",
"jest": "^24.8.0",
"lint-staged": "^8.1.0",
"metro-react-native-babel-preset": "^0.54.1",
"react": "16.8.3",
"react-dom": "16.8.3",
"react-native": "0.59.9",
"react-test-renderer": "16.8.3",
"typescript": "^3.5.2"
},
"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",
"collectCoverage": true
},
"husky": {
"hooks": {
"pre-commit": "tsc && lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix src",
"git add"
]
}
}