-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.54 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.54 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
68
{
"name": "node-btree",
"version": "0.9.0",
"description": "Native binary tree implementation based on GLib Balanced Binary Trees (GTree) for Node.js",
"main": "./lib/index",
"types": "./types/btree.d.ts",
"scripts": {
"install": "cmake-js compile",
"test": "jest -w 1 -c test/config/jest.config.js",
"build-debug": "cmake-js clean && cmake-js -D",
"coverage": "ctest --test-dir build -VV"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unixs/node-btree.git"
},
"author": "Alexander Feodorov <webmaster@unixcomp.org>",
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/unixs/node-btree/issues"
},
"homepage": "https://github.com/unixs/node-btree#readme",
"keywords": [
"n-api",
"btree",
"b-tree",
"map",
"native",
"glib",
"balanced",
"binary",
"tree",
"avl"
],
"engines": {
"node": ">=16"
},
"cpu": [
"x64",
"arm64"
],
"os": [
"!win32"
],
"dependencies": {
"cmake-js": "~7.3"
},
"devDependencies": {
"@eslint/js": "~9.7",
"@types/eslint__js": "~8.42",
"@types/jest": "~29.5",
"@types/node": "~20",
"eslint": "~8.57",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "~28.6",
"eslint-plugin-prettier": "^5.2.1",
"jest": "~29.7",
"prettier": "~3.3",
"prettier-plugin-brace-style": "^0.6.2",
"ts-jest": "~29.2",
"ts-node": "~10.9",
"typescript": "~5.5",
"typescript-eslint": "~7.16"
},
"optionalDependencies": {
"fsevents": "~2"
}
}