-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
64 lines (64 loc) · 1.67 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
64
{
"name": "sbtree",
"version": "3.1.2",
"description": "Optimised document store using B+ Tree for fields. Adapters support for In-Memory and FileSystem",
"main": "index.js",
"scripts": {
"serve:docs": "docsify serve ./docs",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test:unit": "nyc mocha 'src/**/*.spec.js'",
"test:benchmark": "mocha test/benchmark --recursive",
"test:functional": "nyc mocha 'test/functional/*.spec.js'",
"test": "npm run test:unit && npm run test:functional"
},
"engines": {
"node": ">= 14.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Alex-Werner/SBTree.git"
},
"author": "Alex Werner <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Alex-Werner/SBTree/issues"
},
"keywords": [
"optimized data store",
"metadata indexing",
"B+ Tree",
"B Tree",
"Tree",
"B+",
"Bplus",
"b plus",
"bplus tree",
"n-ary tree",
"database",
"big data storage"
],
"homepage": "https://github.com/Alex-Werner/SBTree#readme",
"devDependencies": {
"chai": "^4.3.10",
"chance": "^1.1.11",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"mocha": "^10.2.0",
"nyc": "^15.1.0"
},
"dependencies": {
"fslockjs": "^2.0.2",
"lodash.clonedeep": "^4.5.0",
"lodash.foreach": "^4.5.0",
"lodash.get": "^4.4.2",
"lodash.intersection": "^4.4.0",
"lodash.isequal": "^4.5.0",
"lodash.isobject": "^3.0.2",
"lodash.range": "^3.2.0",
"lodash.reduce": "^4.6.0",
"lodash.transform": "^4.6.0",
"mongo-objectid": "^1.2.2"
}
}