This repository was archived by the owner on Mar 27, 2026. It is now read-only.
forked from heapwolf/lev
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.73 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 1.73 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "lev2",
"version": "8.2.1",
"type": "module",
"main": "./lib/index.js",
"bin": {
"lev": "./bin/lev.js"
},
"description": "CLI for LevelDB",
"scripts": {
"lint": "eslint",
"lint-fix": "eslint --fix",
"postpublish": "git push --tags",
"postinstall": "if [ -d scripts/postinstall.sh ]; then ./scripts/postinstall.sh ; fi",
"test": "./scripts/run_tests.sh",
"update-toc": "./scripts/update_toc"
},
"repository": {
"type": "git",
"url": "https://codeberg.org/maxlath/lev2"
},
"files": [
"bin",
"lib"
],
"keywords": [
"leveldb",
"levelDB",
"level-db",
"levelup",
"level",
"database",
"databases",
"nodebase",
"db",
"keyvalue",
"key/value",
"cli",
"import",
"export",
"batch",
"range",
"count"
],
"preferGlobal": true,
"author": "maxlath",
"license": "MIT",
"bugs": {
"url": "https://codeberg.org/maxlath/lev2/issues"
},
"homepage": "https://codeberg.org/maxlath/lev2",
"dependencies": {
"level-read-stream": "^2.0.0",
"minimatch": "^3.0.4",
"rave-level": "^1.0.0",
"rc": "^1.2.8",
"split": "^1.0.1",
"tabulate": "^1.0.0"
},
"devDependencies": {
"@eslint/config-helpers": "^0.4.1",
"@eslint/js": "^9.38.0",
"@stylistic/eslint-plugin": "^5.5.0",
"@types/node": "^24.9.1",
"@types/readable-stream": "^4.0.22",
"eslint": "^9.38.0",
"eslint-plugin-import-x": "^4.16.1",
"eslint-plugin-n": "^17.23.1",
"eslint-plugin-promise": "^7.2.1",
"globals": "^16.4.0",
"mocha": "^11.7.4",
"should": "^13.2.3",
"tiny-chalk": "^3.0.2"
},
"directories": {
"doc": "docs",
"lib": "lib"
},
"engines": {
"node": ">= 18.20.5"
}
}