-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.43 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
{
"name": "webrtc",
"version": "0.0.1",
"description": "Native implementation of the W3C WebRTC specification for Node, using the Google's WebRTC native library.",
"homepage": "https://axel.isouard.fr/node-webrtc",
"author": "Axel Isouard <[email protected]>",
"main": "index.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/aisouard/node-webrtc.git"
},
"keywords": [
"webrtc",
"w3c"
],
"bugs": {
"url": "https://github.com/aisouard/node-webrtc/issues"
},
"releases": {
"url": "https://github.com/aisouard/node-webrtc/releases/download"
},
"libwebrtc": {
"url": "https://github.com/aisouard/libwebrtc/releases/download",
"version": "1.0.0"
},
"scripts": {
"build": "node-gyp build",
"build-debug": "node-gyp build --debug",
"configure": "node-gyp configure",
"lint": "python scripts/cpplint.py --root=src --filter=-build/namespace,-build/include src/*.cc src/*.h src/*/*.cc src/*/*.h",
"install": "node scripts/fetch.js",
"test": "mocha --recursive"
},
"dependencies": {
"bindings": "^1.3.0",
"decompress": "^4.2.0",
"decompress-targz": "^4.1.1",
"decompress-unzip": "^4.0.1",
"download": "^6.2.5",
"npm": "^5.5.1"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"mocha": "^4.0.1",
"nan": "^2.8.0",
"node-gyp": "^3.6.2"
},
"license": "Apache-2.0"
}