-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.63 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.63 KB
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
{
"name": "udx-native",
"version": "1.20.4",
"description": "udx is reliable, multiplexed, and congestion-controlled streams over udp",
"main": "lib/udx.js",
"files": [
"lib",
"prebuilds",
"binding.cc",
"binding.js",
"CMakeLists.txt"
],
"imports": {
"events": {
"bare": "bare-events",
"default": "events"
}
},
"addon": true,
"scripts": {
"format": "prettier --write .",
"lint": "prettier --check . && lunte",
"test": "npm run test:node && npm run test:bare",
"test:node": "brittle-node --coverage test/*.js",
"test:bare": "brittle-bare --coverage test/*.js",
"test:all": "brittle test/*.js test/slow/*.js",
"test:generate": "brittle -r test/all.js test/*.js",
"bench": "brittle test/bench/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/holepunchto/udx-native.git"
},
"keywords": [
"tcp",
"udp",
"stream",
"reliable"
],
"author": "Holepunch Inc.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/holepunchto/udx-native/issues"
},
"homepage": "https://github.com/holepunchto/udx-native#readme",
"engines": {
"bare": ">=1.17.4"
},
"dependencies": {
"b4a": "^1.5.0",
"bare-events": "^2.2.0",
"require-addon": "^1.1.0",
"streamx": "^2.22.0"
},
"devDependencies": {
"bare-compat-napi": "^1.3.0",
"brittle": "^3.1.0",
"cmake-bare": "^1.1.10",
"cmake-fetch": "^1.0.1",
"cmake-napi": "^1.0.5",
"is-ci": "^3.0.1",
"lunte": "^1.3.0",
"prettier": "^3.6.2",
"prettier-config-holepunch": "^2.0.0",
"tiny-byte-size": "^1.1.0"
}
}