-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.86 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
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "xradix",
"version": "2.0.2",
"description": "an implementation of the radix tree data structure, designed for extensibility",
"author": "Stuart Mashaal <stuart.mashaal@gmail.com>",
"license": "MIT",
"homepage": "https://stumash.github.io/xradix/",
"repository": {
"type": "git",
"url": "https://github.com/stumash/xradix"
},
"bugs": "https://github.com/stumash/xradix/issues",
"keywords": [
"compressed prefix tree",
"prefix tree",
"prefix",
"radix tree",
"radix",
"tree",
"traversal",
"autocomplete",
"depth first",
"preorder",
"postorder",
"breadth first"
],
"main": "out/src/index.js",
"types": "out/src/index.d.ts",
"files": [
"out/src/"
],
"scripts": {
"doc": "rm -rf docs/* && typedoc --mode file --excludePrivate --out docs src",
"test": "mocha out/test/*js --fgrep 'RadixTree Performance' --invert",
"testwperf": "SHOW_TIME=true mocha out/test/*js",
"testwperf-showplot": "SHOW_TIME=true SHOW_PLOT=true mocha out/test/*js",
"tsc": "tsc",
"build": "npm run tsc",
"clean": "rm -rf out",
"cb": "npm run clean && npm run build",
"ct": "npm run cb && npm run test",
"prepare": "npm run tsc"
},
"devDependencies": {
"@types/asciichart": "^1.5.6",
"@types/double-ended-queue": "^2.1.1",
"@types/mocha": "^8.0.0",
"@types/node": "^14.0.22",
"@types/regression": "^2.0.2",
"asciichart": "^1.5.25",
"mocha": "^6.2.2",
"prettier": "^2.0.5",
"regression": "^2.0.1",
"typedoc": "^0.17.8",
"typescript": "^3.9.6"
},
"dependencies": {
"double-ended-queue": "^2.1.0-0"
},
"engine": {
"node": ">=12.13.0"
}
}