-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (50 loc) · 1.27 KB
/
package.json
File metadata and controls
52 lines (50 loc) · 1.27 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
50
51
52
{
"name": "react-native-draggable-drawer",
"version": "0.0.8",
"keywords": [
"react-component",
"react-native",
"vertical draggable drawer",
"ios"
],
"description": "DraggableDrawer component for React Native.",
"scripts": {
"start": "node_modules/react-native/packager/packager.sh",
"test": "jest"
},
"main": "DraggableDrawer.jsx.js",
"dependencies": {
"react-native": "^0.8.0",
"rebound": "0.0.13"
},
"repository": {
"type": "git",
"url": "git+https://github.com/llanox/react-native-draggable-drawer.git"
},
"author": "Gabriel Gutierrez <correo.del.llanox@gmail.com>",
"contributors": [{
"name": "Georg Göttlich",
"email": "mail@dvine.de",
"url": "https://github.com/dvine-multimedia"
}],
"license": "MIT",
"bugs": {
"url": "https://github.com/llanox/react-native-draggable-drawer/issues"
},
"homepage": "https://github.com/llanox/react-native-draggable-drawer#readme",
"devDependencies":{
"babel-core": "^5.8.12",
"babel-jest": "^5.3.0",
"jest-cli": "facebook/jest#0.5.x"
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"testFileExtensions": [
"es6",
"js"
]
},
"peerDependencies": {
"react-native": ">= 0.8.0"
}
}