-
Notifications
You must be signed in to change notification settings - Fork 92
/
package.json
69 lines (69 loc) · 1.52 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
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "codo",
"description": "A CoffeeScript documentation generator.",
"keywords": [
"coffeescript",
"doc"
],
"author": "Michael Kessler <[email protected]>",
"maintainers": [
{
"name": "Michael Kessler"
},
{
"name": "Boris Staal"
}
],
"version": "2.1.2",
"license": "MIT",
"engines": {
"node": ">=0.9.0"
},
"directories": {
"lib": "./src",
"theme/default/assets": "./theme/default/assets",
"theme/default/templates": "./theme/default/templates"
},
"main": "./lib/codo.coffee",
"bin": {
"codo": "./bin/codo"
},
"dependencies": {
"coffee-script": ">= 1.6.0",
"walkdir": ">= 0.0.2",
"optimist": ">= 0.3.0",
"marked": ">= 0.2.10",
"underscore": ">= 0.1.0",
"underscore.string": ">= 0.1.0",
"haml-coffee": ">= 0.6.0",
"mkdirp": ">= 0.1.0",
"connect": ">= 0.1.0",
"colors": ">= 1.1.2",
"async": ">= 0.1.22",
"mincer": "~0.5.11",
"stylus": "~0.38.0",
"nib": "~1.0.0",
"winston": "~0.8.0",
"cli-table": "~0.2.0",
"strftime": "~0.6.2"
},
"devDependencies": {
"diff": ">=2.1.1",
"jasmine-node": ">= 1.13.1",
"deep-eql": "*",
"rimraf": "~2.2.2",
"grunt": "~0.4.1",
"grunt-release": "~0.6.0"
},
"homepage": "https://github.com/coffeedoc/codo",
"repository": {
"type": "git",
"url": "git://github.com/coffeedoc/codo.git"
},
"bugs": {
"url": "https://github.com/coffeedoc/codo/issues"
},
"scripts": {
"test": "jasmine-node --coffee spec"
}
}