-
Notifications
You must be signed in to change notification settings - Fork 185
/
package.json
62 lines (62 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
59
60
61
62
{
"name": "react-native-tableview",
"version": "3.1.0",
"description": "Native iOS TableView wrapper for React Native",
"main": "src/index.js",
"types": "src/index.d.ts",
"scripts": {
"lint": "eslint --ext js,ts,tsx ."
},
"repository": {
"type": "git",
"url": "https://github.com/aksonov/react-native-tableview.git"
},
"keywords": [
"react-native",
"react-component",
"UITableView",
"tableview",
"iOS"
],
"author": {
"name": "Pavlo Aksonov",
"email": "[email protected]",
"url": "http://aksonov.com"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/aksonov/react-native-tableview/issues"
},
"homepage": "https://github.com/aksonov/react-native-tableview#readme",
"dependencies": {
"prop-types": "^15.6.2"
},
"peerDependencies": {
"react": ">=15.1 || >=16.0.0",
"react-native": ">=0.40"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/runtime": "^7.4.5",
"@react-native-community/eslint-config": "^0.0.5",
"@types/react": "^16.8.22",
"@types/react-native": "^0.57.63",
"eslint": "^5.16.0",
"husky": ">=1",
"lint-staged": ">=8",
"react": "16.8.3",
"react-native": "0.59.9",
"typescript": "^3.5.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix",
"git add"
]
}
}