-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
42 lines (42 loc) · 843 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": "react-native-node",
"version": "3.3.1",
"description": "Run a separate Node.js process behind a React Native app",
"author": {
"name": "Andre Staltz",
"url": "staltz.com"
},
"repository": {
"type": "git",
"url": "https://github.com/staltz/react-native-node"
},
"license": "MIT",
"keywords": [
"react-native",
"reactnative",
"node",
"nodejs",
"thread",
"process",
"background",
"service"
],
"main": "index.js",
"bin": {
"react-native-node": "./bin.js"
},
"peerDependencies": {
"react-native": ">=0.47.0"
},
"dependencies": {
"cheerio": "^1.0.0-rc.1",
"mkdirp": "^0.5.1",
"path": "^0.12.7",
"tar": "^3.1.5",
"yargs": "^8.0.2"
},
"devDependencies": {
"babel-eslint": "^4.1.6",
"eslint-plugin-react": "^3.11.3"
}
}