documentation/package.json
Tom MacWright 56bdd39066 Sketch out a less streamy documentationjs
cc @jfirebaugh - I think you mentioned earlier that streams don't
make sense for some of the documentationjs internals. I agree - I think
something like this direction would let us cut a lot of complexity.
Thoughts?
2015-09-26 12:34:55 -04:00

75 lines
1.8 KiB
JSON

{
"name": "documentation",
"description": "a documentation generator",
"version": "2.1.0-alpha2",
"author": "Tom MacWright",
"bin": {
"documentation": "./bin/documentation.js"
},
"browserify": {
"transform": [
"brfs"
]
},
"browser": {
"vinyl-fs": false
},
"dependencies": {
"JSONStream": "^1.0.4",
"ast-types": "^0.8.3",
"brfs": "^1.4.0",
"doctrine": "^0.6.4",
"documentation-theme-default": "^1.0.0-alpha1",
"espree": "^2.0.3",
"extend": "^3.0.0",
"get-comments": "^1.0.1",
"github-url-from-git": "^1.4.0",
"globals-docs": "^2.1.0",
"handlebars": "^3.0.0",
"highlight.js": "^8.4.0",
"js-yaml": "^3.3.1",
"jsdoc-inline-lex": "^1.0.1",
"micromatch": "^2.1.6",
"module-deps": "^3.7.3",
"remarkable": "^1.6.0",
"resolve": "^1.1.6",
"slugg": "^0.1.2",
"sort-stream": "^1.0.1",
"stream-array": "^1.1.0",
"stream-splicer": "^1.3.1",
"strip-json-comments": "^1.0.2",
"through2": "^2.0.0",
"through2-filter": "^2.0.0",
"traverse": "^0.6.6",
"unstream": "^2.0.0",
"vinyl": "^0.5.0",
"vinyl-fs": "^1.0.0",
"yargs": "^3.5.4"
},
"devDependencies": {
"chdir": "0.0.0",
"concat-stream": "^1.4.7",
"eslint": "^0.24.0",
"glob": "^5.0.2",
"tap": "^1.3.1"
},
"keywords": [
"documentation",
"formatter",
"jsdoc",
"jsdoc3",
"parser",
"website"
],
"license": "ISC",
"main": "index.js",
"repository": {
"type": "git",
"url": "git@github.com:documentationjs/documentation.git"
},
"scripts": {
"lint": "eslint --no-eslintrc -c .eslintrc bin lib streams index.js test/*.js test/lib test/misc test/streams",
"test": "npm run lint && tap --coverage test/*.js test/lib test/misc test/streams"
}
}