-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
52 lines (52 loc) · 1.35 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": "goblin",
"version": "0.0.4",
"main": "./lib/goblin.js",
"description": "Pure javascript content management system designed to serve static pages in the cloud.",
"author": {
"name": "Nick Weingartner",
"email": "[email protected]"
},
"contributors": [{
"name": "Sotirios Vrachas",
"email": "[email protected]"
}, {
"name": "Dave Mullen",
"email": "[email protected]"
}],
"keywords": [
"CMS",
"Javascript CMS",
"CouchDB",
"static page",
"server"
],
"homepage": "https://github.com/maned/goblin",
"repository": {
"type": "git",
"url": "https://github.com/maned/goblin.git"
},
"bugs": {
"url": "https://github.com/maned/goblin/issues"
},
"scripts": {
"test": "grunt test"
},
"readmeFilename": "README.md",
"license": "GPLv3",
"dependencies": {
"cradle": "~0.6.6",
"mu2": "~0.5.19",
"express": "~3.3.5",
"underscore": "~1.5.1",
"grunt-complexity": "~0.1.3"
},
"devDependencies": {
"grunt": "~0.4.1",
"grunt-jslint": "1.0.0",
"grunt-contrib-cssmin": "~0.6.2",
"grunt-contrib-requirejs": "~0.4.0",
"grunt-text-replace": "~0.3.6",
"grunt-contrib-watch": "~0.5.3"
}
}