forked from coffeedoc/codo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.3 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
55
56
{
"name" : "codo",
"description" : "A CoffeeScript documentation generator.",
"keywords" : ["coffeescript", "doc"],
"author" : "Michael Kessler <[email protected]>",
"maintainers" : [
{
"name" : "Michael Kessler"
}
],
"version" : "1.9.0",
"licenses" : [
{
"type" : "MIT",
"url" : "http://github.com/netzpirat/codo/raw/master/LICENSE"
}
],
"engines" : {
"node" : ">=0.4.0"
},
"directories" : {
"lib" : "./src",
"theme/default/assets" : "./theme/default/assets",
"theme/default/templates" : "./theme/default/templates"
},
"main" : "./src/codo",
"bin" : {
"codo" : "./bin/codo"
},
"dependencies" : {
"coffee-script" : ">= 1.6.0",
"walkdir" : ">= 0.0.2",
"optimist" : ">= 0.3.0",
"marked": ">= 0.1.9",
"underscore" : ">= 0.1.0",
"underscore.string" : ">= 0.1.0",
"haml-coffee" : ">= 0.6.0",
"mkdirp" : ">= 0.1.0",
"connect" : ">= 0.1.0",
"async": ">= 0.1.22"
},
"devDependencies" : {
"jasmine-node" : ">= 1.0.13"
},
"homepage" : "https://github.com/netzpirat/codo",
"repository" : {
"type" : "git",
"url" : "git://github.com/netzpirat/codo.git"
},
"bugs" : {
"url" : "https://github.com/netzpirat/codo/issues"
},
"scripts" : {
"test" : "jasmine-node --coffee spec"
}
}