Skip to content

Commit 49ca1f0

Browse files
committed
Add NPM package.json with required NPM dependencies.
1 parent e19ecfa commit 49ca1f0

File tree

3 files changed

+29
-4
lines changed

3 files changed

+29
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ This project takes the [HTML5 version](https://github.com/webrtc/apprtc/tree/mas
1515
$ git clone https://github.com/eface2face/iOSRTCApp
1616
$ cd iOSRTCApp
1717
```
18-
- Install [xcode](https://www.npmjs.com/package/xcode) NPM package:
18+
- Install NPM dependencies:
1919
```bash
20-
$ npm i xcode
20+
$ npm install
2121
```
2222
- Add both platforms. All the needed plugins are installed automatically because of being included in the "config.xml" file:
2323
```bash

config.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version='1.0' encoding='utf-8'?>
2-
<widget id="com.eface2face.iosrtcapp" version="0.0.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
2+
<widget id="com.eface2face.iosrtcapp" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
33
<name>iOSRTCApp</name>
44
<description>
55
Google's AppRTC application adapted to iOS devices using cordova-plugin-iosrtc.
@@ -33,5 +33,5 @@
3333
<plugin name="cordova-plugin-crosswalk-webview" spec="https://github.com/crosswalk-project/cordova-plugin-crosswalk-webview" />
3434
<plugin name="cordova-plugin-device" version="^1.0.1" />
3535
<plugin name="cordova-plugin-camera" spec="https://github.com/eface2face/cordova-plugin-camera" />
36-
<plugin name="cordova-plugin-iosrtc" version="^1.4.1" />
36+
<plugin name="cordova-plugin-iosrtc" version="^1.4.5" />
3737
</widget>

package.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"name": "iOSRTCApp",
3+
"version": "1.0.0",
4+
"description": "Google's AppRTC application adapted to iOS devices using cordova-plugin-iosrtc",
5+
"dependencies": {
6+
"xcode": "^0.8.0"
7+
},
8+
"devDependencies": {},
9+
"repository": {
10+
"type": "git",
11+
"url": "https://github.com/eface2face/iOSRTCApp.git"
12+
},
13+
"keywords": [
14+
"cordova-plugin-iosrtc",
15+
"apprtc",
16+
"ios",
17+
"android"
18+
],
19+
"author": "Iñaki Baz Castillo at eFace2Face, inc.",
20+
s "license": "ISC",
21+
"bugs": {
22+
"url": "https://github.com/eface2face/iOSRTCApp/issues"
23+
},
24+
"homepage": "https://github.com/eface2face/iOSRTCApp"
25+
}

0 commit comments

Comments
 (0)