-
-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.13 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
{
"name": "utp-native",
"version": "2.5.3",
"description": "Native bindings for libutp",
"main": "index.js",
"gypfile": true,
"scripts": {
"test-timeouts": "tape test/timeouts.js",
"test": "standard && tape test/net.js test/sockets.js test/udp.js",
"install": "node-gyp-build",
"fetch-libutp": "git submodule update --recursive --init",
"prebuild": "prebuildify --napi --strip",
"prebuild-ia32": "prebuildify --napi --strip --arch=ia32"
},
"bin": {
"ucat": "./ucat.js"
},
"engines": {
"node": ">=8.12"
},
"dependencies": {
"napi-macros": "^2.0.0",
"node-gyp-build": "^4.2.0",
"readable-stream": "^3.0.2",
"timeout-refresh": "^1.0.0",
"unordered-set": "^2.0.1"
},
"devDependencies": {
"prebuildify": "^4.1.2",
"standard": "^14.3.1",
"tape": "^4.11.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mafintosh/utp-native.git"
},
"author": "Mathias Buus (@mafintosh)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mafintosh/utp-native/issues"
},
"homepage": "https://github.com/mafintosh/utp-native#readme"
}