-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
55 lines (55 loc) · 1.39 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
{
"name": "memory-level",
"version": "2.0.0",
"description": "In-memory abstract-level database for Node.js and browsers",
"author": "Rod Vagg <rod@vagg.org> (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 --verbose test.js",
"test-browsers-local": "airtap --coverage -p local test.js",
"coverage": "nyc report -r lcovonly"
},
"files": [
"index.js",
"index.d.ts",
"UPGRADING.md",
"CHANGELOG.md"
],
"dependencies": {
"abstract-level": "^2.0.1",
"functional-red-black-tree": "^1.0.1",
"module-error": "^1.0.1"
},
"devDependencies": {
"@voxpelli/tsconfig": "^15.0.0",
"airtap": "^4.0.3",
"airtap-playwright": "^1.0.1",
"airtap-sauce": "^1.1.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"
}
}