-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.08 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.08 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
{
"name": "async-socket-rn",
"version": "0.1.0",
"description": "an async socket for react native",
"main": "index.js",
"scripts": {
"postinstall": "sh postinstall.sh",
"start": "node node_modules/react-native/local-cli/cli.js start",
"run:packager": "./node_modules/react-native/packager/packager.sh",
"run:ios": "react-native run-ios --project-path ./example/ios",
"lint": "eslint ./",
"build": "npm run build:js && npm run build:ios",
"build:js": "exit 0",
"build:ios":
"bundle install --binstubs ./examples/ios && bundle exec pod install --project-directory=./example/ios/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bensonz/async-socket-rn.git"
},
"keywords": [],
"author": "Bensonz <mr.bz@hotmail.com>",
"license": "MIT",
"homepage": "https://github.com/bensonz/async-socket-rn#readme",
"peerDependencies": {
"react": ">=16.0.0",
"react-native": ">=0.50"
},
"dependencies": {
"prop-types": "^15.5.10"
},
"devDependencies": {
"react": "^16.1.1",
"react-native": "^0.50.4"
}
}