documentation/package.json
Tom MacWright 3da1ff6dd0 Source-sorting by default (#410)
* Source-sorting by default

Many changes

* Uses a new version of module-deps that exposes a sort key
  we use to sort documentation.
* Adds inference for methods in objects
* Groups events into a separate comment property

* Add jsdoc property. Refs https://github.com/documentationjs/documentation/pull/388#issuecomment-215791547

* Namespaces and paths

* More powerful paths: paths now include name, kind, and scope
* comments now include a 'namespace' property with a formatted namespace

* Fix tests

* Re-ignore fonts

* Nix sourceKey from output

* Pin dependency versions

* Fix module-deps-sortable ref

* Update tests for right deps
2016-04-29 18:09:52 -04:00

84 lines
2.1 KiB
JSON

{
"name": "documentation",
"description": "a documentation generator",
"version": "4.0.0-beta2",
"author": "Tom MacWright",
"bin": {
"documentation": "./bin/documentation.js"
},
"dependencies": {
"ansi-html": "0.0.5",
"babel-core": "^6.5.2",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-traverse": "^6.5.0",
"babel-types": "^6.7.2",
"babelify": "^7.2.0",
"babylon": "^6.5.2",
"chalk": "^1.1.1",
"chokidar": "^1.2.0",
"concat-stream": "^1.5.0",
"debounce": "^1.0.0",
"disparity": "^2.0.0",
"doctrine": "^1.1.0",
"documentation-theme-default": "3.0.0",
"documentation-theme-utils": "^3.0.0",
"events": "^1.1.0",
"extend": "^3.0.0",
"get-comments": "^1.0.1",
"git-url-parse": "^6.0.1",
"highlight.js": "^9.1.0",
"js-yaml": "^3.3.1",
"mdast-util-inject": "^1.1.0",
"micromatch": "^2.1.6",
"mime": "^1.3.4",
"module-deps-sortable": "4.0.6",
"parse-filepath": "^0.6.3",
"remark": "^4.1.2",
"remark-toc": "^3.0.0",
"remote-origin-url": "0.4.0",
"resolve": "^1.1.6",
"slugg": "^1.0.0",
"stream-array": "^1.1.0",
"strip-json-comments": "^2.0.0",
"tiny-lr": "^0.2.1",
"unist-builder": "^1.0.0",
"vfile": "^1.1.2",
"vfile-reporter": "^1.4.1",
"vfile-sort": "^1.0.0",
"vinyl": "^1.1.0",
"vinyl-fs": "^2.3.1",
"yargs": "^4.3.1"
},
"devDependencies": {
"chdir": "0.0.0",
"eslint": "^2.0.0",
"fs-extra": "^0.26.2",
"glob": "^7.0.0",
"mock-fs": "^3.5.0",
"tap": "^5.4.4",
"tmp": "0.0.28",
"unist-util-visit": "^1.0.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 bin lib index.js test",
"doc": "documentation index.js -f md > docs/NODE_API.md",
"test": "npm run lint && tap -t 120 --coverage test/*.js test/lib test/streams"
}
}