forked from ProvataHealth/react-native-smooth-swipe-list
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.29 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
{
"name": "react-native-smooth-swipe-list",
"version": "2.0.0",
"main": "index",
"author": "Andrew Grewell <[email protected]>",
"description": "A swipe-able `ListView` component modeled after the list view in the iOS Mail app.",
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"clean": "rm -rf $TMPDIR/react-* && watchman watch-del-all && npm cache clean"
},
"repository": {
"type": "git",
"url": "https://github.com/ProvataHealth/react-native-smooth-swipe-list.git"
},
"license": "MIT",
"keywords": [
"react-native",
"react",
"react-component",
"swipe",
"swipe list",
"SwipeList",
"swipeable list",
"ios",
"android",
"native swipe list",
"swipeout"
],
"dependencies": {
"lodash": "^4.17.4",
"prop-types": "^15.6.0",
"react-addons-shallow-compare": "^15.6.2"
},
"peerDependencies": {
"react": "16.2.0",
"react-native": "0.47.0"
},
"devDependencies": {
"babel-jest": "^22.1.0",
"babel-preset-react-native": "^4.0.0",
"jest": "^22.1.4",
"react-test-renderer": "^16.2.0"
},
"jest": {
"preset": "react-native",
"testPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/Example/"
]
}
}