forked from murat-dogan/node-datachannel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.8 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
{
"name": "@luxonis/node-datachannel",
"version": "1.1.0",
"description": "Luxonis fork of node-datachannel",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"directories": {
"lib": "lib",
"test": "test"
},
"_from": "node-datachannel@latest",
"scripts": {
"postinstall": "node postinstall.js",
"prepare-prebuilds": "npm run build && node prepare-prebuilds.js",
"relocate-prebuilds": "node relocate-prebuilds.js",
"build": "cmake-js build",
"build:debug": "cmake-js build -D",
"clean": "cmake-js clean",
"lint": "eslint lib/**/* test/**/*",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/luxonis/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"
},
{
"name": "Filip Prochazka",
"url": "https://github.com/filipproch"
}
],
"license": "LGPL",
"gypfile": true,
"bugs": {
"url": "https://github.com/luxonis/node-datachannel/issues"
},
"homepage": "https://github.com/luxonis/node-datachannel#readme",
"devDependencies": {
"@types/node": "^17.0.23",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"cmake-js": "7.0.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"glob": "^8.0.3",
"jest": "^27.5.1",
"nan": "^2.15.0",
"napi-thread-safe-callback-cancellable": "^0.0.7",
"node-addon-api": "5.0.0",
"prettier": "^2.6.2",
"typescript": "^4.8.4"
}
}