-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
56 lines (56 loc) · 1.36 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
{
"name": "memory-level",
"version": "3.0.0",
"description": "In-memory abstract-level database for Node.js and browsers",
"author": "Rod Vagg <[email protected]> (https://github.com/rvagg)",
"license": "MIT",
"main": "index.js",
"types": "./index.d.ts",
"scripts": {
"test": "standard && hallmark && (nyc -s node test.js | tap-arc) && nyc report",
"test-pessimistic": "node test.js | tap-arc -pv",
"test-browsers": "airtap --coverage test.js",
"coverage": "nyc report -r lcovonly"
},
"files": [
"index.js",
"index.d.ts",
"lib",
"UPGRADING.md",
"CHANGELOG.md"
],
"dependencies": {
"abstract-level": "^3.0.1",
"functional-red-black-tree": "^1.0.1",
"module-error": "^1.0.1"
},
"devDependencies": {
"@babel/preset-env": "^7.26.0",
"@voxpelli/tsconfig": "^15.0.0",
"airtap": "^5.0.0",
"airtap-playwright": "^1.0.1",
"babelify": "^10.0.0",
"buffer": "^6.0.3",
"hallmark": "^5.0.1",
"nyc": "^17.1.0",
"standard": "^17.0.0",
"tap-arc": "^1.3.2",
"tape": "^5.0.1",
"typescript": "^5.6.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Level/memory-level.git"
},
"homepage": "https://github.com/Level/memory-level",
"keywords": [
"level",
"leveldb",
"leveldown",
"levelup",
"memory"
],
"engines": {
"node": ">=18"
}
}