forked from Kureev/react-native-side-menu
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.97 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.97 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
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "react-native-side-menu",
"version": "1.1.3",
"description": "Simple customizable component to create side menu",
"main": "build/index.js",
"scripts": {
"build": "./build.sh",
"prepublish": "./build.sh"
},
"repository": {
"type": "git",
"url": "git@github.com:react-native-community/react-native-side-menu.git"
},
"keywords": [
"react-native",
"react-component",
"ios",
"sidebar"
],
"author": "Alexey Kureev <kureev-mail@ya.ru> (https://github.com/Kureev)",
"license": "MIT",
"bugs": {
"url": "https://github.com/react-native-community/react-native-side-menu/issues"
},
"homepage": "https://github.com/react-native-community/react-native-side-menu",
"dependencies": {
"prop-types": "^15.5.10"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-preset-flow": "^6.23.0",
"babel-preset-react-native": "^2.1.0",
"eslint": "3",
"eslint-config-airbnb": "^15.0.2",
"eslint-plugin-flowtype": "^2.35.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.0.2",
"eslint-plugin-react": "^7.1.0",
"flow-bin": "0.49",
"react": "16.0.0-alpha.12",
"react-native": "^0.46.3"
},
"react-native": {
"crypto": "react-native-crypto",
"_stream_transform": "readable-stream/transform",
"_stream_readable": "readable-stream/readable",
"_stream_writable": "readable-stream/writable",
"_stream_duplex": "readable-stream/duplex",
"_stream_passthrough": "readable-stream/passthrough",
"stream": "stream-browserify",
"vm": "vm-browserify"
},
"browser": {
"crypto": "react-native-crypto",
"_stream_transform": "readable-stream/transform",
"_stream_readable": "readable-stream/readable",
"_stream_writable": "readable-stream/writable",
"_stream_duplex": "readable-stream/duplex",
"_stream_passthrough": "readable-stream/passthrough",
"stream": "stream-browserify",
"vm": "vm-browserify"
}
}