forked from ptomasroos/react-native-scrollable-tab-view
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.4 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
{
"name": "react-native-scrollable-tab-view",
"version": "0.9.0",
"main": "index.js",
"scripts": {
"lint": "eslint -c .eslintrc . --ignore-path .gitignore",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/versum/react-native-scrollable-tab-view.git"
},
"keywords": [
"react-native-component",
"react-component",
"react-native",
"ios",
"tab",
"scrollable"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/versum/react-native-scrollable-tab-view/issues"
},
"peerDependencies": {
"react-native": ">=0.20.0"
},
"homepage": "https://github.com/versum/react-native-scrollable-tab-view#readme",
"dependencies": {
"react-timer-mixin": "0.13.4",
"prop-types": "15.6.2",
"create-react-class": "15.6.2"
},
"devDependencies": {
"babel-eslint": "8.2.3",
"eslint": "5.5.0",
"eslint-config-prettier": "3.0.1",
"eslint-plugin-flowtype": "2.50.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jsx-a11y": "6.1.1",
"eslint-plugin-prettier": "2.6.2",
"eslint-plugin-react": "7.11.1",
"eslint-plugin-react-native": "3.2.1",
"husky": "1.0.0-rc.13",
"lint-staged": "7.2.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint",
"git add"
]
}
}