-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.14 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
{
"name": "couchdb-view-by-keys",
"version": "4.1.0",
"description": "A command line tool to query CouchDB views, focused on easing queries with complex JSON keys",
"main": "./bin/couchdb-view-by-keys",
"bin": {
"couchdb-view-by-keys": "bin/couchdb-view-by-keys"
},
"files": [
"bin",
"lib"
],
"scripts": {
"test": "mocha",
"prepublishOnly": "npm test",
"postpublish": "git push --tags",
"update-toc": "./scripts/update_toc"
},
"keywords": [
"CouchDB",
"CLI",
"view",
"keys",
"docs",
"ndjson",
"json"
],
"author": "maxlath",
"license": "MIT",
"dependencies": {
"blue-cot": "^4.0.5",
"commander": "^2.9.0",
"lodash.get": "^4.4.2",
"lodash.set": "^4.3.2"
},
"devDependencies": {
"mocha": "^7.1.2",
"should": "^13.2.3"
},
"directories": {
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maxlath/couchdb-view-by-keys.git"
},
"bugs": {
"url": "https://github.com/maxlath/couchdb-view-by-keys/issues"
},
"homepage": "https://github.com/maxlath/couchdb-view-by-keys#readme"
}