forked from aksonov/react-native-tableview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.23 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
{
"name": "react-native-tableview",
"version": "2.1.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": "[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.0"
},
"peerDependencies": {
"react": ">=15.1 || >=16.0.0",
"react-native": ">=0.40"
},
"devDependencies": {
"babel-eslint": "^8.0.2",
"eslint": "^4.9.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"eslint-plugin-react-native": "^3.1.0",
"prettier": "^1.8.2",
"prettier-eslint": "^8.2.1",
"react": "16.0.0",
"react-native": "^0.50.3"
}
}