-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.41 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
{
"name": "ibplustree",
"version": "1.0.0",
"description": "A package to implement the Interval B+ tree, in TypeScript",
"main": "src/index.ts",
"directories": {
"src": "src",
"test": "tests"
},
"dependencies": {
"performance-node": "^0.2.0"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"@types/node": "^11.13.4",
"benchmark": "^2.1.4",
"chai": "^4.2.0",
"coveralls": "^3.0.11",
"mocha": "^6.0.2",
"nyc": "^13.3.0",
"ts-node": "^8.0.3",
"typedoc": "^0.16.9",
"typescript": "^3.4.1"
},
"scripts": {
"test": "mocha -r ts-node/register tests/*.test.ts",
"test-coverage": "nyc -r lcov -e .ts -x \"*.test.ts\" mocha -r ts-node/register tests/*.test.ts && nyc report --reporter=text-lcov",
"benchmark": "node --max-old-space-size=4096 --stack-size=2000 -r ts-node/register benchmarks/src/Main.benchmark.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EdgarACarneiro/IBplusTree.git"
},
"keywords": [
"temporal data",
"tree",
"tree structure",
"Interval B+ tree",
"intervals",
"temporal tree",
"B+",
"logarithmic complexity",
"temporal",
"index"
],
"author": "EdgarACarneiro",
"license": "ISC",
"bugs": {
"url": "https://github.com/EdgarACarneiro/IBplusTree/issues"
},
"homepage": "https://github.com/EdgarACarneiro/IBplusTree#readme"
}