-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.06 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
{
"name": "illuminate",
"version": "1.0.2",
"description": "Extract Markdown-formatted comments from JavaScript source code to build READMEs and API documentation.",
"main": "illuminate.js",
"bin": {
"illuminate": "./bin/illuminate"
},
"directories": {
"example": "example",
"test": "test"
},
"scripts": {
"prepublish": "bin/illuminate < illuminate.js > README.md",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Benjamin Barber",
"license": "MIT",
"dependencies": {
"commander": "^2.6.0",
"dox": "^0.6.1",
"highlight.js": "^8.4.0",
"inherits": "^2.0.1",
"lodash.assign": "^3.0.0",
"lodash.kebabcase": "^3.0.1",
"lodash.pick": "^3.0.0",
"marked": "^0.3.3"
},
"devDependencies": {},
"repository": {
"type": "git",
"url": "https://github.com/barberboy/illuminate.git"
},
"keywords": [
"documentation",
"docs",
"markdown"
],
"bugs": {
"url": "https://github.com/barberboy/illuminate/issues"
},
"homepage": "https://github.com/barberboy/illuminate"
}