-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.48 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
{
"name": "i2bplustree",
"version": "1.0.2",
"description": "A package to implement the Improved Interval B+ tree, in TypeScript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"@types/node": "^11.13.4",
"chai": "^4.2.0",
"coveralls": "^3.0.11",
"kruonis": "^1.0.2",
"mocha": "^6.0.2",
"nyc": "^13.3.0",
"performance-node": "^0.2.0",
"ts-node": "^8.0.3",
"typedoc": "^0.16.9",
"typescript": "^3.4.1"
},
"scripts": {
"build": "tsc",
"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 | coveralls",
"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/most-inesctec/I2Bplus-tree.git"
},
"keywords": [
"I2B+tree",
"I2BplusTree",
"I2B+",
"temporal data",
"tree",
"tree structure",
"Interval B+ tree",
"IB+tree",
"IB+",
"intervals",
"temporal tree",
"B+",
"logarithmic complexity",
"temporal",
"index",
"valid time"
],
"author": "most-inesctec",
"license": "MIT",
"bugs": {
"url": "https://github.com/most-inesctec/I2Bplus-tree/issues"
},
"homepage": "https://github.com/most-inesctec/I2Bplus-tree#readme"
}