forked from openube/couchviews
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 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
49
50
51
52
53
54
{
"name": "couchviews",
"version": "1.1.5",
"description": "Store and load CouchDB views to / from your file system for easier setup of new databases.",
"author": "Damien Klinnert <mail@damienklinnert.com>",
"licence": "MIT",
"main": "lib/couchviews.js",
"engines": {
"node": "~0.6.18"
},
"dependencies": {
"couch-client": "~0.0.4",
"commander": "~1.0.1"
},
"devDependencies": {
"request": "~2.10.0",
"mocha": "~1.3.2",
"should": "~1.1.0"
},
"bin": {
"couchviews": "./bin/couchviews"
},
"scripts": {
"test": "./node_modules/.bin/mocha --reporter spec --require should"
},
"repository": {
"type": "git",
"url": "git://github.com/damienklinnert/couchviews.git"
},
"keywords": [
"couchdb",
"replicate",
"views",
"design",
"documents",
"document",
"doc",
"file",
"disk",
"export",
"dump",
"push",
"import",
"couch_docs",
"couch_design_docs",
"setup",
"test",
"database",
"db",
"couch",
"sync",
"folder"
]
}