-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.6 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
{
"name": "hyperiondb-client",
"version": "0.2.5",
"description": "Native Node.js client for a HyperionDb / pg_replica Postgres cluster — a primary-following connection pool over the N nodes.",
"main": "client.js",
"types": "client.d.ts",
"license": "AGPL-3.0-only",
"keywords": [
"postgres",
"raft",
"node",
"failover",
"replication"
],
"engines": {
"node": ">= 20"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hyperiondb/hyperiondb-client.git"
},
"author": "Tadas Talaikis <info@nordlet.com>",
"napi": {
"binaryName": "hyperiondb-client",
"targets": [
"x86_64-unknown-linux-gnu",
"aarch64-unknown-linux-gnu",
"x86_64-unknown-linux-musl",
"aarch64-unknown-linux-musl",
"x86_64-pc-windows-msvc"
]
},
"files": [
"client.js",
"client.d.ts",
"index.js"
],
"scripts": {
"build": "napi build --platform --release",
"build:debug": "napi build --platform",
"test": "node --test --test-concurrency=1 test/types.test.js test/retry.test.js test/fence.test.js",
"test:chaos": "node --test test/chaos.test.js",
"test:all": "node --test --test-concurrency=1 test/types.test.js test/retry.test.js test/fence.test.js test/chaos.test.js"
},
"devDependencies": {
"@napi-rs/cli": "3.7.0"
},
"homepage": "https://github.com/hyperiondb/hyperiondb-client",
"optionalDependencies": {
"hyperiondb-client-linux-x64-gnu": "0.2.0",
"hyperiondb-client-linux-arm64-gnu": "0.2.0",
"hyperiondb-client-linux-x64-musl": "0.2.0",
"hyperiondb-client-linux-arm64-musl": "0.2.0"
}
}