forked from GerHobbelt/docco
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 871 Bytes
/
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
{
"name": "docco",
"description": "The Quick and Dirty Literate Programming Documentation Generator",
"keywords": ["documentation", "docs", "generator", "literate", "coffeescript"],
"author": "Jeremy Ashkenas",
"version": "0.6.3",
"licenses": [{
"type": "MIT",
"url": "http://opensource.org/licenses/mit-license.php"
}],
"repository": {
"type": "git",
"url": "https://github.com/jashkenas/docco.git"
},
"engines": {
"node": ">=0.2.0"
},
"dependencies": {
"commander": ">= 1.1.1",
"marked": ">= 0.2.9",
"fs-extra": ">= 0.6.1",
"underscore": ">= 1.4.4",
"highlight.js": ">= 8.0.0"
},
"devDependencies": {
"coffee": ">= 0.0.1",
"coffee-script": ">= 1.6.3"
},
"main" : "./docco",
"bin": {
"docco": "./bin/docco"
}
}