documentation/package.json
Tom MacWright 3369fd2af2 Create stream that parses Markdown in JSDoc
This uses remarkable behind the scenes. Before merge,
I want to figure out how to make the naming of the streams
that

* Output HTML
* Parse Markdown into HTML
* Emit Markdown

Straightforward
2015-03-27 17:14:54 -04:00

45 lines
1.0 KiB
JSON

{
"name": "documentation",
"version": "1.0.0",
"description": "a documentation generator",
"main": "index.js",
"scripts": {
"test": "eslint index.js test/*.js test/streams/*.js && prova test/*.js test/streams/*.js",
"cover": "istanbul cover prova test/*.js test/streams/*.js --dir $CIRCLE_ARTIFACTS"
},
"bin": {
"documentation": "./bin/documentation.js"
},
"keywords": [
"documentation",
"jsdoc",
"jsdoc3",
"parser",
"website",
"formatter"
],
"author": "Tom MacWright",
"license": "ISC",
"dependencies": {
"JSONStream": "^0.10.0",
"ast-types": "^0.7.2",
"doctrine": "^0.6.4",
"espree": "^1.12.2",
"extend": "^2.0.0",
"handlebars": "^3.0.0",
"module-deps": "^3.7.3",
"remarkable": "^1.6.0",
"through": "^2.3.6",
"traverse": "^0.6.6",
"yargs": "^3.5.4"
},
"devDependencies": {
"chdir": "0.0.0",
"concat-stream": "^1.4.7",
"eslint": "^0.17.1",
"glob": "^5.0.2",
"istanbul": "^0.3.7",
"prova": "^2.1.1"
}
}