forked from murat-dogan/node-datachannel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 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
57
{
"name": "node-datachannel",
"version": "0.2.2",
"description": "libdatachannel node bindings",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"directories": {
"lib": "lib",
"test": "test"
},
"_from": "node-datachannel@latest",
"scripts": {
"install": "prebuild-install || (npm install --ignore-scripts && npm run _prebuild)",
"install-nice": "npm run clean && cmake-js build --CDUSE_NICE=1",
"build": "cmake-js build",
"_prebuild": "prebuild --backend cmake-js",
"clean": "cmake-js clean",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/murat-dogan/node-datachannel.git"
},
"keywords": [
"libdatachannel", "webrtc", "p2p", "peer-to-peer", "datachannel", "data channel"
],
"contributors": [
{
"name": "Murat Doğan",
"url": "https://github.com/murat-dogan"
},
{
"name": "Paul-Louis Ageneau",
"url": "https://github.com/paullouisageneau"
}
],
"license": "LGPL",
"gypfile": true,
"bugs": {
"url": "https://github.com/murat-dogan/node-datachannel/issues"
},
"homepage": "https://github.com/murat-dogan/node-datachannel#readme",
"devDependencies": {
"cmake-js": "^6.2.1",
"jest": "^27.2.5",
"nan": "^2.15.0",
"napi-thread-safe-callback-cancellable": "^0.0.7",
"node-addon-api": "^4.2.0",
"prebuild": "^11.0.0"
},
"bundledDependencies": [
"prebuild-install"
],
"dependencies": {
"prebuild-install": "^6.1.4"
}
}