-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.09 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
{
"name": "couchit",
"description": "CouchDB iterator toolkit",
"keywords": [
"couchdb",
"couchdb tool",
"database",
"command line",
"iterator",
"batch",
"document updater",
"toolkit",
"json-schema",
"schema validator"
],
"version": "0.7.0",
"homepage": "http://github.com/dsquier/couchit",
"author": "David Squier ([email protected])",
"main": "./lib/couchit",
"bin": {
"couchit": "./bin/couchit"
},
"preferGlobal": true,
"repository": {
"type": "git",
"url": "http://github.com/dsquier/couchit.git"
},
"bugs": {
"url": "http://github.com/dsquier/couchit/issues"
},
"directories": {
"bin": "./bin",
"lib": "./lib"
},
"dependencies": {
"ajv": "^5.2.0",
"async": "^2.4.1",
"commander": "^2.10.0",
"json-schema-ref-parser": "^3.1.2",
"nano": "^6.3.0",
"node-object-hash": "1.2.0"
},
"devDependencies": {},
"scripts": {},
"engines": {
"node": "'>= 6.10.0'"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/dsquier/couchit/raw/master/LICENSE"
}
]
}