-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
57 lines (57 loc) · 1.24 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
{
"name": "level-party",
"version": "5.1.1",
"description": "Open a leveldb handle multiple times",
"license": "MIT",
"main": "index.js",
"author": {
"name": "James Halliday",
"email": "[email protected]",
"url": "http://substack.net"
},
"scripts": {
"test": "standard && hallmark && nyc tape test/*.js",
"coverage": "nyc report -r lcovonly",
"hallmark": "hallmark --fix",
"dependency-check": "dependency-check --no-dev . test/*.js",
"prepublishOnly": "npm run dependency-check"
},
"files": [
"example",
"index.js",
"CHANGELOG.md"
],
"dependencies": {
"level": "^7.0.1",
"multileveldown": "^5.0.1",
"readable-stream": "^3.6.0"
},
"devDependencies": {
"bytewise": "^1.1.0",
"dependency-check": "^4.1.0",
"hallmark": "^4.0.0",
"nyc": "^15.1.0",
"osenv": "~0.1.0",
"standard": "^16.0.3",
"subleveldown": "^6.0.1",
"tape": "^5.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/Level/party.git"
},
"homepage": "https://github.com/Level/party",
"keywords": [
"level",
"leveldb",
"database",
"handle",
"multi-handle",
"multilevel",
"unix",
"socket"
],
"engines": {
"node": ">=10"
}
}