-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
58 lines (58 loc) · 1.48 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": "subleveldown",
"version": "6.0.1",
"description": "Split a levelup database into sublevels with their own keyspace, encoding and events",
"author": "Mathias Buus (@mafintosh)",
"license": "MIT",
"main": "index.js",
"scripts": {
"test": "standard && hallmark && (nyc -s node test | faucet) && nyc report",
"test-browsers-local": "airtap test/index.js",
"coverage": "nyc report -r lcovonly",
"hallmark": "hallmark --fix",
"dependency-check": "dependency-check --no-dev .",
"prepublishOnly": "npm run dependency-check"
},
"files": [
"index.js",
"leveldown.js",
"matchdown.js",
"CHANGELOG.md",
"UPGRADING.md"
],
"dependencies": {
"abstract-leveldown": "^7.2.0",
"encoding-down": "^7.1.0",
"inherits": "^2.0.3",
"level-option-wrap": "^1.1.0",
"levelup": "^5.1.1",
"reachdown": "^1.1.0"
},
"devDependencies": {
"after": "^0.8.2",
"airtap": "^4.0.3",
"airtap-playwright": "^1.0.1",
"dependency-check": "^4.1.0",
"faucet": "^0.0.3",
"hallmark": "^4.0.0",
"level-concat-iterator": "^3.0.0",
"memdown": "^6.1.0",
"nyc": "^15.1.0",
"standard": "^16.0.3",
"tape": "^5.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/Level/subleveldown.git"
},
"homepage": "https://github.com/Level/subleveldown",
"bugs": {
"url": "https://github.com/Level/subleveldown/issues"
},
"keywords": [
"level"
],
"engines": {
"node": ">=10"
}
}