forked from nevir/groc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·45 lines (40 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
{
"name": "groc",
"version": "0.4.0",
"description": "Documentation generation, in the spirit of literate programming.",
"keywords": ["documentation", "docs", "generator"],
"homepage": "http://nevir.github.com/groc/",
"author": "Ian MacLeod <[email protected]> (https://github.com/nevir)",
"licenses": [{
"type": "MIT",
"url": "https://github.com/nevir/groc/MIT-LICENSE.txt"
}],
"repository": {
"type": "git",
"url": "https://github.com/nevir/groc"
},
"main": "./index",
"directories": {
"lib": "./lib"
},
"bin": {
"groc": "./bin/groc"
},
"engines": {
"node": ">= v0.4.12"
},
"dependencies": {
"coffee-script": ">= 1.1.3",
"colors": ">= 0.5.1",
"fs-tools": ">= 0.1.0",
"glob": ">= 3.0.1",
"jade": ">= 0.17.0",
"optimist": ">= 0.3.4",
"showdown": ">= 0.2.0",
"spate": ">= 0.1.0",
"uglify-js": ">= 1.1.1",
"underscore": ">= 1.2.2"
},
"devDependencies": {},
"scripts": {}
}