-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.33 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.33 KB
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": "document-dataply",
"version": "0.0.14",
"description": "Simple and powerful JSON document database supporting complex queries and flexible indexing policies.",
"license": "MIT",
"author": "izure <admin@izure.org>",
"type": "commonjs",
"main": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"require": "./dist/cjs/index.js",
"import": "./dist/cjs/index.js"
}
},
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/izure1/document-dataply.git"
},
"scripts": {
"test": "jest -i",
"pretest": "esbuild test/wal_crash_sim.ts --bundle --platform=node --outfile=test/wal_crash_sim_bundled.js",
"benchmark": "npx tsx benchmark/MassiveInsert.bench.ts",
"prebenchmark": "npm run pretest",
"build": "node build/index.js && tsc"
},
"keywords": [
"database",
"document-database",
"nosql",
"json",
"indexing",
"bptree",
"transactions",
"acid",
"embedded-database",
"deep-indexing",
"dataply"
],
"dependencies": {
"croner": "^10.0.1",
"dataply": "^0.0.26"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"esbuild": "^0.27.3",
"jest": "^30.3.0",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3"
}
}