-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
61 lines (61 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
52
53
54
55
56
57
58
59
60
61
{
"name": "udx-native",
"version": "1.14.4",
"description": "udx is reliable, multiplexed, and congestion-controlled streams over udp",
"main": "lib/udx.js",
"files": [
"lib",
"prebuilds",
"binding.c",
"binding.js",
"CMakeLists.txt"
],
"imports": {
"events": {
"bare": "bare-events",
"default": "events"
}
},
"addon": true,
"scripts": {
"test": "npm run lint && npm run test:bare && npm run test:node",
"test:node": "node test/all.js",
"test:bare": "bare test/all.js",
"test:all": "brittle test/*.js test/slow/*.js",
"test:generate": "brittle -r test/all.js test/*.js",
"bench": "brittle test/bench/*.js",
"lint": "standard"
},
"repository": {
"type": "git",
"url": "git+https://github.com/holepunchto/udx-native.git"
},
"keywords": [
"tcp",
"udp",
"stream",
"reliable"
],
"author": "Holepunch Inc.",
"license": "Apache-2.0",
"gypfile": true,
"bugs": {
"url": "https://github.com/holepunchto/udx-native/issues"
},
"homepage": "https://github.com/holepunchto/udx-native#readme",
"dependencies": {
"b4a": "^1.5.0",
"bare-events": "^2.2.0",
"node-gyp-build": "^4.4.0",
"streamx": "^2.14.0"
},
"devDependencies": {
"brittle": "^3.1.0",
"cmake-bare": "^1.1.10",
"cmake-fetch": "^1.0.1",
"cmake-napi": "^1.0.5",
"is-ci": "^3.0.1",
"standard": "^17.1.0",
"tiny-byte-size": "^1.1.0"
}
}