forked from Level/abstract-leveldown
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
72 lines (72 loc) · 2.33 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "abstract-nosql",
"description": "An abstract prototype for nosql database with sync and streamable (LevelDOWN API)",
"version": "3.0.0",
"contributors": [
"Riceball LEE <[email protected]> (https://github.com/snowyu)",
"Rod Vagg <[email protected]> (https://github.com/rvagg)",
"John Chesley <[email protected]> (https://github.com/chesles/)",
"Jake Verbaten <[email protected]> (https://github.com/raynos)",
"Dominic Tarr <[email protected]> (https://github.com/dominictarr)",
"Max Ogden <[email protected]> (https://github.com/maxogden)",
"Lars-Magnus Skog <[email protected]> (https://github.com/ralphtheninja)",
"David Björklund <[email protected]> (https://github.com/kesla)",
"Julian Gruber <[email protected]> (https://github.com/juliangruber)",
"Paolo Fragomeni <[email protected]> (https://github.com/hij1nx)",
"Anton Whalley <[email protected]> (https://github.com/No9)",
"Matteo Collina <[email protected]> (https://github.com/mcollina)",
"Pedro Teixeira <[email protected]> (https://github.com/pgte)",
"James Halliday <[email protected]> (https://github.com/substack)",
"Thomas Watson Steen <[email protected]> (https://github.com/watson)"
],
"repository": {
"type": "git",
"url": "https://github.com/snowyu/node-abstract-nosql.git"
},
"homepage": "https://github.com/snowyu/node-abstract-nosql",
"keywords": [
"abstract",
"abstract-nosql",
"nosql",
"database",
"stream",
"leveldb",
"leveldown",
"levelup"
],
"main": "./index",
"dependencies": {
"abstract-error": "^1.0.1",
"abstract-object": "~2.1.5",
"buffer-codec": "~1.6.2",
"events-ex": "^1.1.2",
"inherits-ex": "^1.1.1",
"util-ex": "^0.2.8",
"xtend": "~4.0.0"
},
"devDependencies": {
"abstract-iterator": ">=3.0.0",
"coffee-coverage": "^2.0.1",
"istanbul": "^0.4.5",
"pre-commit": "^1.2.2",
"rimraf": "*",
"sinon": "^4.1.2",
"tap": "~10.7.3"
},
"browser": {
"rimraf": false
},
"scripts": {
"test": "node_modules/.bin/tap ./test.js",
"test-cov": "tap ./test.js --coverage --coverage-report=lcovonly",
"prepublish": "coffee -o . -c src/*.coffee"
},
"pre-commit": {
"run": [
"prepublish",
"test"
]
},
"license": "MIT",
"optionalDependencies": {}
}