-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
60 lines (60 loc) · 1.58 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
{
"name": "webrtc-connect",
"version": "0.2.1",
"description": "Establish WebRTC Data Channels between browser-node and node-node with a TCP/HTTP/WebSockets like interface",
"main": "src/index.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "npm run test-node && npm run test-cov",
"codestyle": "./node_modules/.bin/standard --format",
"test-browser": "zuul -- test/*.js",
"test-browser-local": "zuul --local -- test/*.js",
"test-cov": "node ./node_modules/.bin/lab -t 85 tests/node-test.js",
"test-node": "node ./node_modules/.bin/lab tests/node-test.js",
"build": "./node_modules/.bin/browserify -s rtcc -r ./src/ | ./node_modules/.bin/uglifyjs -m > webrtc-connect.min.js"
},
"pre-commit": [
"codestyle",
"test"
],
"repository": {
"type": "git",
"url": "git://github.com/diasdavid/webrtc-connect"
},
"keywords": [
"webrtc",
"p2p",
"data channel",
"data channels",
"stream",
"peer-to-peer",
"webrtc stream",
"peer"
],
"author": "David Dias <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/diasdavid/webrtc-connect/issues"
},
"homepage": "https://github.com/diasdavid/webrtc-connect",
"browser": {
"http": "xhr"
},
"dependencies": {
"corsify": "^2.1.0",
"request": "^2.55.0",
"simple-peer": "^5.9.0",
"wrtc": "0.0.55",
"xhr": "^2.0.1"
},
"devDependencies": {
"browserify": "^10.2.1",
"code": "^1.4.0",
"lab": "^5.9.0",
"precommit-hook": "^2.0.1",
"standard": "^3.11.1",
"uglifyjs": "^2.4.10"
}
}