-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
88 lines (88 loc) · 2.44 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "1tp",
"version": "0.21.1",
"description": "One transport protocol to rule them all -- offering a net-like stream API on top of various communication protocols",
"main": "index.js",
"keywords": [
"transport",
"microminion",
"nat",
"udp",
"tcp",
"turn",
"webrtc"
],
"author": {
"name": "Nico Janssens",
"email": "[email protected]"
},
"contributors": [
{
"name": "Thomas Delaet",
"email": "[email protected]"
}
],
"license": "MIT",
"engines": {
"node": ">=6.9.0"
},
"dependencies": {
"args-js": "^0.10.12",
"chrome-dgram": "^3.0.1",
"chrome-net": "^3.3.0",
"freeice": "^2.2.0",
"hat": "0.0.3",
"ip": "^1.1.3",
"merge": "^1.2.0",
"mm-runtime-info": "0.0.2",
"nat-upnp": "^1.0.0",
"netstring-stream": "^0.1.2",
"public-ip": "^2.0.1",
"q": "^1.4.1",
"simple-peer": "^6.2.0",
"socket.io-client": "^1.7.2",
"turn-js": "^0.5.0",
"winston": "^2.3.0",
"winston-browser": "^1.0.0",
"winston-debug": "^1.1.0",
"winston-meta-wrapper": "^1.2.0",
"wrtc": "^0.0.61"
},
"devDependencies": {
"apprtc-socket": "^0.2.4",
"babel-preset-es2015": "^6.13.2",
"babelify": "^7.3.0",
"browserify": "^13.1.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"duplexify": "^3.5.0",
"envify": "^4.0.0",
"gulp": "^3.9.1",
"gulp-if": "^2.0.2",
"gulp-size": "^2.1.0",
"gulp-uglify": "^2.0.0",
"merge": "^1.2.0",
"mocha": "^3.2.0",
"publish": "^0.6.0",
"rimraf": "^2.5.4",
"through2": "^2.0.3",
"uglify-js": "^2.7.5",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"yargs": "^6.5.0",
"yn": "^1.2.0"
},
"repository": {
"type": "git",
"url": "git://github.com/microminion/1tp.git"
},
"scripts": {
"browserify": "gulp browserify",
"browserify-prod": "gulp browserify --production",
"test-node": "./node_modules/.bin/mocha test/*.unit.js test/session/*.unit.js test/signaling/*.unit.js test/transports/*.unit.js",
"clean-test-chrome-app": "rimraf test/browserify/chrome-app/bundle.js",
"clean-test-cordova-app": "rimraf test/browserify/cordova-app/www/js/bundle.js && rimraf test/browserify/cordova-app/platforms && rimraf test/browserify/cordova-app/plugins",
"clean": "rimraf build && rimraf node_modules && npm run clean-test-cordova-app && npm run clean-test-chrome-app",
"2npm": "publish"
}
}