-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
62 lines (62 loc) · 1.56 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
{
"name": "abstract-level",
"version": "2.0.2",
"description": "Abstract class for a lexicographically sorted key-value database",
"license": "MIT",
"main": "index.js",
"types": "./index.d.ts",
"scripts": {
"test": "standard && hallmark && (nyc -s node test/self.js | tap-arc) && nyc report",
"test-pessimistic": "node test/self.js | tap-arc -pv",
"test-browsers": "airtap --coverage test/self.js",
"test-electron": "airtap -p electron --coverage test/self.js | tap-arc",
"coverage": "nyc report -r lcovonly"
},
"files": [
"abstract-chained-batch.js",
"abstract-iterator.js",
"abstract-level.js",
"index.js",
"index.d.ts",
"lib",
"test",
"types",
"CHANGELOG.md",
"UPGRADING.md"
],
"dependencies": {
"buffer": "^6.0.3",
"is-buffer": "^2.0.5",
"level-supports": "^6.0.0",
"level-transcoder": "^1.0.1",
"maybe-combine-errors": "^1.0.0",
"module-error": "^1.0.1"
},
"devDependencies": {
"@types/node": "^22.7.7",
"@voxpelli/tsconfig": "^15.0.0",
"airtap": "^4.0.4",
"airtap-electron": "^1.0.0",
"airtap-playwright": "^1.0.1",
"electron": "^30.5.1",
"hallmark": "^5.0.1",
"nyc": "^15.1.0",
"standard": "^17.1.2",
"tap-arc": "^1.3.2",
"tape": "^5.9.0",
"typescript": "^5.6.3"
},
"repository": {
"type": "git",
"url": "https://github.com/Level/abstract-level.git"
},
"homepage": "https://github.com/Level/abstract-level",
"keywords": [
"abstract-level",
"level",
"leveldb"
],
"engines": {
"node": ">=16"
}
}