-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
51 lines (51 loc) · 1.13 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
{
"name": "yunodb",
"version": "0.1.4",
"description": "portable, persistent, electron compatible fulltext search database",
"main": "index.js",
"scripts": {
"test": "standard && tape test/*.js"
},
"bin": {
"yuno": "./cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blahah/yunodb.git"
},
"keywords": [
"fulltext",
"search",
"database",
"json",
"object",
"store",
"leveldb",
"search-index",
"electron"
],
"author": "Richard Smith-Unna <rik@fathomlabs.io> (@blahah)",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/blahah/yunodb/issues"
},
"homepage": "https://github.com/blahah/yunodb#readme",
"dependencies": {
"JSONStream": "^1.1.1",
"commander": "^2.9.0",
"jsonpath-plus": "^0.15.0",
"leveldown": "^1.4.6",
"levelup": "^1.3.1",
"lodash": "^4.11.1",
"mkdirp": "^0.5.1",
"natural": "github:blahah/natural",
"path-exists": "^2.1.0",
"search-index": "^0.8.12"
},
"devDependencies": {
"rimraf": "^2.5.2",
"standard": "^6.0.8",
"tape": "^4.5.1",
"temporary": "0.0.8"
}
}