-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
52 lines (52 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
52
{
"name": "grunt-couch",
"description": "Compile CouchDB design documents from Couchapp like directory tree.",
"version": "1.5.3",
"homepage": "https://github.com/jo/grunt-couch",
"author": {
"name": "Johannes J. Schmidt",
"email": "[email protected]",
"url": "http://die-tf.de"
},
"repository": {
"type": "git",
"url": "git://github.com/jo/grunt-couch.git"
},
"bugs": {
"url": "https://github.com/jo/grunt-couch/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/jo/grunt-couch/blob/master/LICENSE-MIT"
}
],
"main": "Gruntfile.js",
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"test": "grunt test"
},
"devDependencies": {
"grunt-contrib-jshint": "~3.2.0",
"grunt-contrib-clean": "~2.0.1",
"grunt-contrib-nodeunit": "~4.0.0",
"grunt": "~1.6.1"
},
"peerDependencies": {
"grunt": ">=1.0.1"
},
"dependencies": {
"async": "~3.2.4",
"couchdb-compile": "^1.11.2",
"lodash": "~4.17.21",
"mime": "~3.0.0",
"request": "~2.88.2"
},
"keywords": [
"gruntplugin",
"couchdb",
"couchapp"
]
}