-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.41 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": "@plaindb/leveldb",
"version": "0.0.1",
"description": "A wrapper around LevelDB for both server-side and client-side JS",
"author": "Basedwon <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/basedwon/leveldb.git"
},
"bugs": {
"url": "https://github.com/basedwon/leveldb/issues"
},
"homepage": "https://github.com/basedwon/leveldb#readme",
"main": "lib/level-db.js",
"browser": {
".": "./lib/level-db.js"
},
"scripts": {
"dev:test": "nodemon -w ../.. -x npm test",
"dev": "nodemon -w ../.. test/leveldb.test.js",
"update": "npm run update:prod && npm run update:dev",
"update:prod": "npm i -S basd@latest @basd/nested@latest @plaindb/storage@latest",
"update:dev": "npm i -D @basd/testr@latest",
"docs": "jsdoc2md lib/*.js > docs/api.md",
"test": "testr test"
},
"dependencies": {
"@basd/nested": "^0.0.0",
"@plaindb/storage": "^0.0.0",
"basd": "^1.0.9",
"level": "^8.0.0",
"level-read-stream": "^1.1.0"
},
"devDependencies": {
"@basd/testr": "^0.1.1",
"jsdoc": "^4.0.2",
"jsdoc-to-markdown": "^8.0.0"
},
"keywords": [
"leveldb",
"database",
"key-value",
"storage",
"nodejs",
"stream",
"async",
"singleton",
"batch",
"sublevel",
"encoding",
"decoding",
"evented",
"datastore",
"persistence"
]
}