forked from jashkenas/docco
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
48 lines (48 loc) · 1003 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "@gerhobbelt/docco",
"description": "The Quick and Dirty Literate Programming Documentation Generator",
"keywords": [
"documentation",
"docs",
"generator",
"literate",
"coffeescript"
],
"author": "Jeremy Ashkenas",
"contributors": [
{
"name": "Hellyna NG",
"email": "[email protected]"
}
],
"version": "0.8.0-6",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jashkenas/docco.git"
},
"engines": {
"node": ">=0.2.0"
},
"dependencies": {
"commander": "2.15.1",
"marked": "GerHobbelt/marked#master",
"fs-extra": "6.0.0",
"underscore": "1.9.0",
"@gerhobbelt/highlight.js": "9.13.1-13"
},
"devDependencies": {
"coffee": "4.1.0",
"coffee-script": "1.12.7",
"rimraf": "2.6.2"
},
"main": "./docco",
"bin": {
"docco": "./bin/docco"
},
"scripts": {
"test": "make test",
"build": "make",
"pub": "npm publish --access public"
}
}