-
Notifications
You must be signed in to change notification settings - Fork 525
/
package.json
45 lines (45 loc) · 1.35 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-swipe-list-view",
"version": "3.2.9",
"main": "lib/index.js",
"author": "Jesse Sessler <[email protected]>",
"description": "A ListView with rows that swipe open and closed.",
"scripts": {
"start": "node_modules/react-native/packager/packager.sh",
"dev": "node bin/dev.js && cd SwipeListExample && npm run start",
"prettier": "prettier --write --loglevel=warn \"**/*.js\"",
"lint": "eslint . --ext .js",
"fix": "yarn run prettier && yarn run lint"
},
"repository": {
"type": "git",
"url": "https://github.com/jemise111/react-native-swipe-list-view"
},
"types": "./types/index.d.ts",
"license": "MIT",
"keywords": [
"react",
"react-native",
"react-component",
"ios",
"android",
"listview",
"swipe",
"swipeable"
],
"peerDependencies": {
"prop-types": ">=15.5.0",
"react": ">=0.14.8",
"react-native": ">=0.23.1"
},
"devDependencies": {
"@types/react": "^16.8.20",
"@types/react-native": "^0.57.63",
"babel-eslint": "^10.0.3",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"prettier": "1.18.2"
}
}