-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
35 lines (35 loc) · 1.09 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
{
"name": "markdox"
, "description": "Markdox is a documentation generator based on Dox and Markdown with support for JavaScript, CoffeeScript and IcedCoffeeScript."
, "version": "0.1.10"
, "author": "Charles Bourasseau <[email protected]>"
, "contributors": [
]
, "dependencies": {
"dox": "https://github.com/visionmedia/dox/tarball/master"
, "commander": ">= 0.6.0"
, "async": ">= 0.1.18"
, "ejs": ">= 0.7.2 <2.0.0"
, "underscore": ">= 1.3.3"
, "coffee-script": ">= 1.3.3"
, "iced-coffee-script": ">= 1.3.3d"
}
, "devDependencies": {
"mocha": ">= 1.3.2"
, "should": ">= 1.1.0"
}
, "bin": { "markdox": "./bin/markdox" }
, "keywords": ["documentation", "dox", "markdown"]
, "repository": {
"type": "git",
"url": "https://[email protected]/cbou/markdox.git"
}
, "main": "index"
, "license": "MIT"
, "scripts": {
"documentation": "bin/markdox -o doc/api.md lib/markdox.js"
, "test": "./node_modules/mocha/bin/mocha test/*-test.js"
, "examples": "node examples/example.js"
}
, "engines": { "node": ">= 0.6.0" }
}