forked from node-webrtc/node-webrtc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.49 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
{
"name": "wrtc",
"description": "Standards-compliant WebRTC implementation for Node",
"keywords": [
"webrtc",
"p2p",
"peer"
],
"version": "0.0.59",
"author": "Alan K <[email protected]> (http://blog.modeswitch.org)",
"homepage": "http://js-platform.github.io/node-webrtc/",
"bugs": "https://github.com/js-platform/node-webrtc/issues",
"license": "BSD",
"repository": {
"type": "git",
"url": "http://github.com/js-platform/node-webrtc.git"
},
"main": "lib/index.js",
"browser": "lib/browser.js",
"binary": {
"module_name": "wrtc",
"module_path": "./build/{module_name}/v{version}/{configuration}/{node_abi}-{platform}-{arch}/",
"remote_path": "./{module_name}/v{version}/{configuration}/",
"package_name": "{node_abi}-{platform}-{arch}.tar.gz",
"host": "https://node-webrtc.s3.amazonaws.com"
},
"engines": {
"node": ">=0.10.x"
},
"dependencies": {
"fs-extra": "^0.18.0",
"nan": "^2.1.0",
"node-gyp": "^3.0.3",
"node-pre-gyp": "0.6.x",
"node-static-alias": "^0.1.2",
"nopt": "^2.2.0"
},
"bundledDependencies": [
"node-pre-gyp"
],
"devDependencies": {
"aws-sdk": "^2.2.10",
"grunt": "~0.4.2",
"grunt-contrib-jshint": "~0.8.0",
"grunt-tape": "~0.0.2",
"simple-peer": "^5.0.0",
"tape": "~2.4.2",
"ws": "~0.4.31",
"node-static": "^0.7.3",
"minimist": "0.0.8"
},
"scripts": {
"install": "node-pre-gyp install --fallback-to-build",
"test": "node test/all.js"
}
}