-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 936 Bytes
/
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
{
"name": "rn-simple-swipe",
"version": "1.10.0",
"description": "React Native simple swipeable component",
"main": "lib/index.js",
"scripts": {
"build": "node bin/dev.js",
"dev": "yarn build && yarn watch",
"watch": "onchange 'lib/*.js' -- yarn build",
"android": "cd example && yarn android && yarn start",
"ios": "cd example && yarn ios",
"version+": "node bin/version.js"
},
"peerDependencies": {
"prop-types": ">=15.7.2",
"react": ">=17.0.1",
"react-native": ">=0.64.0",
"react-native-gesture-handler": ">=1.10.3"
},
"repository": {
"type": "git",
"url": "https://github.com/disko998/rn-simple-swipe.git"
},
"keywords": [
"react-native-swipeable",
"swipeable",
"swipe",
"react",
"react-native",
"react-component",
"ios",
"android"
],
"author": "Stefan Diskic",
"license": "ISC",
"dependencies": {
"prop-types": "15.7.1"
},
"devDependencies": {
"onchange": "^7.1.0"
}
}