-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.59 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
{
"name": "node-unix-socket",
"version": "0.2.7",
"main": "js/index.js",
"types": "js/index.d.ts",
"author": {
"email": "[email protected]",
"name": "Ouyang Yadong"
},
"description": "node-unix-socket allows you to use SO_REUSEPORT, SOCK_SEQPACKET, SOCK_DGRAM in Node.js.",
"scripts": {
"artifacts": "napi artifacts",
"build:debug": "npm run build:ts && napi build --js false --dts js/addon.d.ts --platform",
"build": "npm run build:ts && napi build --platform --js false --dts js/addon.d.ts --release",
"build:ts": "tsc -p tsconfig.json",
"check_mem": "node --max-old-space-size=128 scripts/dgram_memory.js",
"doc": "typedoc --excludePrivate --excludeInternal --excludeExternals js/index.ts",
"prepublishOnly": "npm run build:ts && napi prepublish -t npm",
"test": "jest --testRegex '__test__/(.+).spec.ts' --runInBand --silent=false",
"test:dumb": "TERM=dumb npm run test",
"version": "napi version"
},
"napi": {
"name": "node-unix-socket",
"triples": {
"defaults": false,
"additional": [
"armv7-unknown-linux-gnueabihf",
"x86_64-apple-darwin",
"aarch64-apple-darwin",
"aarch64-unknown-linux-musl",
"aarch64-unknown-linux-gnu",
"x86_64-unknown-linux-musl",
"x86_64-unknown-linux-gnu"
]
}
},
"license": "MIT",
"devDependencies": {
"@napi-rs/cli": "^2.10.3",
"@types/jest": "^27.5.0",
"@types/node": "^22.7.6",
"jest": "^27.5.1",
"ts-jest": "^27.1.4",
"typedoc": "^0.22.15",
"typescript": "^4.6.3"
},
"engines": {
"node": ">= 10"
}
}