-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
47 lines (47 loc) · 935 Bytes
/
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
{
"name": "level-dump",
"version": "1.1.0",
"description": "Dumps all values and/or keys of a level db or a sublevel to the console.",
"main": "level-dump.js",
"bin": {
"level-dump": "./bin/cmd.js"
},
"scripts": {
"test": "tap test/*.js"
},
"repository": {
"type": "git",
"url": "git://github.com/thlorenz/level-dump.git"
},
"homepage": "https://github.com/thlorenz/level-dump",
"dependencies": {
"level": "~1.7.0",
"minimist": "~1.1.1"
},
"devDependencies": {
"level-sublevel": "~6.6.1",
"level-test": "~2.0.3",
"tap": "~0.4.3",
"tape": "~1.0.4"
},
"keywords": [
"level",
"leveldb",
"dump",
"print",
"log",
"console",
"inspect",
"db",
"database"
],
"author": {
"name": "Thorsten Lorenz",
"email": "thlorenz@gmx.de",
"url": "http://thlorenz.com"
},
"license": "MIT",
"engine": {
"node": ">=0.6"
}
}