This repository has been archived by the owner on Dec 2, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathpackage.json
58 lines (58 loc) · 1.46 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
{
"name": "memdown",
"version": "6.1.1",
"description": "An drop-in replacement for LevelDOWN that works in memory only",
"authors": [
"Rod Vagg <[email protected]> (https://github.com/rvagg)"
],
"license": "MIT",
"main": "memdown.js",
"scripts": {
"test": "standard && hallmark && (nyc -s node test.js | faucet) && nyc report",
"test-browsers": "airtap --coverage --verbose test.js",
"test-browsers-local": "airtap --coverage -p local test.js",
"coverage": "nyc report -r lcovonly",
"hallmark": "hallmark --fix",
"dependency-check": "dependency-check . test.js",
"prepublishOnly": "npm run dependency-check"
},
"files": [
"memdown.js",
"UPGRADING.md",
"CHANGELOG.md"
],
"dependencies": {
"abstract-leveldown": "^7.2.0",
"buffer": "^6.0.3",
"functional-red-black-tree": "^1.0.1",
"inherits": "^2.0.1",
"ltgt": "^2.2.0"
},
"devDependencies": {
"airtap": "^4.0.3",
"airtap-playwright": "^1.0.1",
"airtap-sauce": "^1.1.0",
"dependency-check": "^3.3.0",
"faucet": "^0.0.1",
"hallmark": "^4.0.0",
"level-concat-iterator": "^3.0.0",
"nyc": "^15.1.0",
"standard": "^17.0.0",
"tape": "^5.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/Level/memdown.git"
},
"homepage": "https://github.com/Level/memdown",
"keywords": [
"level",
"leveldb",
"leveldown",
"levelup",
"memory"
],
"engines": {
"node": ">=10"
}
}