forked from software-mansion/react-native-gesture-handler
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.31 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.31 KB
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
{
"name": "react-native-gesture-handler",
"version": "0.2.0",
"description": "Experimental implementation of a new declarative API for gesture handling in react-native",
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest"
},
"main": "GestureHandler.js",
"files": [
"android/build.gradle",
"android/src/main/AndroidManifest.xml",
"android/src/main/java/",
"android/lib/build.gradle",
"android/lib/src/main/java/",
"README.md",
"GestureHandler.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/kmagiera/react-native-gesture-handler.git"
},
"author": {
"email": "krzys.magiera@gmail.com",
"name": "Krzysztof Magiera"
},
"license": "MIT",
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/kmagiera/react-native-gesture-handler/issues"
},
"homepage": "https://github.com/kmagiera/react-native-gesture-handler#readme",
"dependencies": {
},
"peerDependencies": {
"react": ">= 15.0.0",
"react-native": ">= 0.32.0"
},
"jest": {
"preset": "jest-react-native"
},
"devDependencies": {
"babel-jest": "16.0.0",
"babel-preset-react-native": "1.9.0",
"jest": "16.0.2",
"jest-react-native": "16.0.0",
"react-test-renderer": "15.3.2"
}
}