-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
48 lines (48 loc) · 1.04 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
{
"name": "subindex",
"version": "3.0.0",
"description": "Generic pluggable indexing system for leveldb/levelup. Designed to be used with the level-queryengine query engine.",
"main": "index.js",
"scripts": {
"test": "node_modules/.bin/mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/eugeneware/subindex"
},
"keywords": [
"leveldb",
"levelup",
"query",
"optimize",
"optimizer",
"query-engine",
"engine",
"indexing",
"indexer",
"index",
"indexes",
"sublevel",
"queries",
"mongodb"
],
"author": "Eugene Ware <[email protected]>",
"license": "BSD",
"devDependencies": {
"chai": "^1.9.1",
"mocha": "^1.18.2",
"rimraf": "~2.2.2",
"leveldown": "^0.10.2",
"levelup": "^0.19.0"
},
"dependencies": {
"bytewise": "^0.7.0",
"level-delete-range": "~0.1.0",
"level-hooks": "~4.5.0",
"level-sublevel": "^6.4.6",
"lodash.defaults": "^2.4.1",
"pairs": "0.0.2",
"through": "~2.3.4",
"through2": "^0.6.3"
}
}