forked from aksonov/react-native-tableview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.26 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
{
"name": "react-native-tableview",
"version": "2.5.0",
"description": "Native iOS TableView wrapper for React Native",
"main": "src/index.js",
"types": "src/index.d.ts",
"scripts": {
"lint": "eslint **/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aksonov/react-native-tableview.git"
},
"keywords": [
"react-native",
"react-component",
"UITableView",
"tableview",
"iOS"
],
"author": {
"name": "Pavlo Aksonov",
"email": "akso.nov@gmail.com",
"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-eslint": "^8.2.6",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.9.1",
"eslint-plugin-react-native": "^3.2.1",
"prettier": "^1.13.7",
"prettier-eslint": "^8.8.2",
"react": "16.4.1",
"react-native": "0.56.0"
}
}