-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
57 lines (57 loc) · 1.24 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
{
"name": "couchtato",
"description": "CouchDB documents iterator tool.",
"keywords": [
"couchdb",
"database",
"command line"
],
"version": "0.3.0",
"homepage": "http://github.com/cliffano/couchtato",
"author": "Cliffano Subagio <blah@cliffano.com> (http://blog.cliffano.com)",
"contributors": [
"All contributors (https://github.com/cliffano/couchtato/graphs/contributors)"
],
"main": "./lib/couchtato",
"bin": {
"couchtato": "./bin/couchtato"
},
"preferGlobal": true,
"repository": {
"type": "git",
"url": "http://github.com/cliffano/couchtato.git"
},
"bugs": {
"url": "http://github.com/cliffano/couchtato/issues"
},
"directories": {
"bin": "./bin",
"lib": "./lib",
"test": "./test"
},
"dependencies": {
"async": "^2.4.0",
"bagofcli": "^1.0.0",
"fs.extra": "^1.3.2",
"lodash": "^4.17.4",
"log4js": "^1.1.1",
"nano": "^6.3.0",
"node-object-hash": "1.2.0"
},
"devDependencies": {
"buster-node": "^0.7.1",
"referee": "^1.2.0"
},
"scripts": {
"test": "buster-test"
},
"engines": {
"node": "'>= 6.10.0'"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/cliffano/couchtato/raw/master/LICENSE"
}
]
}