-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 979 Bytes
/
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
{
"name": "js-native-ternary-buffer-tree",
"version": "0.2.0",
"description": "C++ ternary search tree, for Node Buffers",
"main": "index.js",
"directories": {
"test": "test"
},
"dependencies": {
"bindings": "^1.5.0",
"node-addon-api": "^2.0.0"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^7.1.0"
},
"scripts": {
"test": "mocha",
"install": "node-gyp rebuild"
},
"repository": {
"type": "git",
"url": "https://github.com/overview/js-native-ternary-buffer-tree.git"
},
"keywords": [
"c++",
"ternary",
"search",
"tree",
"buffer",
"sorted",
"set",
"map",
"string",
"utf-8",
"fast",
"native"
],
"author": "Adam Hooper <adam@adamhooper.com>",
"license": "AGPL-3.0",
"gypfile": true,
"bugs": {
"url": "https://github.com/overview/js-native-ternary-buffer-tree/issues"
},
"homepage": "https://github.com/overview/js-native-ternary-buffer-tree"
}