forked from snowyu/abstract-nosql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.97 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.97 KB
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": "abstract-nosql",
"description": "An abstract prototype for nosql database with sync and streamable (LevelDOWN API)",
"version": "2.0.0",
"contributors": [
"Riceball LEE <snowyu.lee@gmail.com> (https://github.com/snowyu)",
"Rod Vagg <r@va.gg> (https://github.com/rvagg)",
"John Chesley <john@chesl.es> (https://github.com/chesles/)",
"Jake Verbaten <raynos2@gmail.com> (https://github.com/raynos)",
"Dominic Tarr <dominic.tarr@gmail.com> (https://github.com/dominictarr)",
"Max Ogden <max@maxogden.com> (https://github.com/maxogden)",
"Lars-Magnus Skog <lars.magnus.skog@gmail.com> (https://github.com/ralphtheninja)",
"David Björklund <david.bjorklund@gmail.com> (https://github.com/kesla)",
"Julian Gruber <julian@juliangruber.com> (https://github.com/juliangruber)",
"Paolo Fragomeni <paolo@async.ly> (https://github.com/hij1nx)",
"Anton Whalley <anton.whalley@nearform.com> (https://github.com/No9)",
"Matteo Collina <matteo.collina@gmail.com> (https://github.com/mcollina)",
"Pedro Teixeira <pedro.teixeira@gmail.com> (https://github.com/pgte)",
"James Halliday <mail@substack.net> (https://github.com/substack)",
"Thomas Watson Steen <w@tson.dk> (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": [
"nosql",
"database",
"stream",
"leveldb",
"leveldown",
"levelup"
],
"main": "./abstract-nosql.js",
"dependencies": {
"abstract-object": ">=1.6.1",
"buffer-codec": ">=1.3.1",
"xtend": "~3.0.0"
},
"devDependencies": {
"abstract-iterator": ">=0.10.0",
"rimraf": "*",
"sinon": "*",
"tap": "*"
},
"browser": {
"rimraf": false
},
"scripts": {
"test": "node_modules/.bin/tap ./test.js",
"prepublish": "coffee -o . -c src/*.coffee"
},
"license": "MIT",
"optionalDependencies": {
}
}