documentation/package.json
Tom MacWright 631c6925d4 feat(core): Switch to Promises everywhere. Adopt Node v4 ES6 (#648)
* feat(core): Switch to Promises everywhere. Adopt Node v4 ES6

Big changes:

* Uses template strings where appropriate
* Config and argument parsing is unified and there is no such thing
  as formatterOptions anymore. All user-passed options go through
  mergeConfig.
* The node API surface changed (again): `buildSync` is removed,
  building operations return Promises.
* Now using Flow for internal type annotations.

More changes:

* Remove buildSync command
* feat(inference): Partially implement object shorthand support
* Refs #649
* Use Flow annotations to  enforce types
* Keep flow but switch to comment syntax
* Clarify types
* More flow improvements
* Turn server into class
* LinkerStack becomes class too
* Fix comment description type
* Run flow on lint
* Many more flow fixes
* More intense flow refactoring
* Simplify inference steps
* Update inference tests, flow errors down to 1
* Continue refining types
* Fix more flow issues
* Use 'use strict' everywhere
* Make 'ast' property configurable
* Fix many tests
* Fix more tests
* Fix more tests
* Fix augments
* Test Markdown meta support
* Improve test coverage
* Switch back from for of to for for speed
2017-01-27 16:14:19 -05:00

109 lines
3.0 KiB
JSON

{
"name": "documentation",
"description": "a documentation generator",
"version": "4.0.0-beta.18",
"author": "Tom MacWright",
"bin": {
"documentation": "./bin/documentation.js"
},
"dependencies": {
"ansi-html": "^0.0.6",
"babel-core": "^6.17.0",
"babel-generator": "6.19.0",
"babel-plugin-system-import-transformer": "2.4.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babel-traverse": "^6.16.0",
"babel-types": "^6.16.0",
"babelify": "^7.3.0",
"babylon": "^6.11.4",
"chalk": "^1.1.1",
"chokidar": "^1.2.0",
"concat-stream": "^1.5.0",
"debounce": "^1.0.0",
"disparity": "^2.0.0",
"doctrine": "^2.0.0",
"extend": "^3.0.0",
"get-comments": "^1.0.1",
"git-url-parse": "^6.0.1",
"github-slugger": "1.1.1",
"glob": "^7.0.0",
"globals-docs": "^2.3.0",
"highlight.js": "^9.1.0",
"js-yaml": "^3.3.1",
"lodash": "^4.11.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",
"pify": "^2.3.0",
"read-pkg-up": "^2.0.0",
"remark": "^6.0.1",
"remark-html": "5.0.1",
"remark-toc": "^3.0.0",
"remote-origin-url": "0.4.0",
"resolve": "^1.1.6",
"shelljs": "^0.7.5",
"stream-array": "^1.1.0",
"strip-json-comments": "^2.0.0",
"tiny-lr": "^1.0.3",
"unist-builder": "^1.0.0",
"unist-util-visit": "^1.0.1",
"vfile": "^2.0.0",
"vfile-reporter": "^3.0.0",
"vfile-sort": "^2.0.0",
"vinyl": "^2.0.0",
"vinyl-fs": "^2.3.1",
"yargs": "^6.0.0"
},
"devDependencies": {
"are-we-flow-yet": "^1.0.0",
"babel-eslint": "^7.1.1",
"chdir": "0.0.0",
"cz-conventional-changelog": "1.2.0",
"documentation-schema": "0.0.1",
"eslint": "^3.12.2",
"eslint-plugin-flowtype": "^2.29.2",
"flow-bin": "^0.37.4",
"fs-extra": "^1.0.0",
"json-schema": "0.2.3",
"mock-fs": "^3.5.0",
"standard-changelog": "0.0.1",
"tap": "^8.0.0",
"tmp": "^0.0.29"
},
"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": "./bin/documentation.js build index.js -f md --access=public > docs/NODE_API.md",
"changelog": "standard-changelog -i CHANGELOG.md -w",
"self-lint": "node ./bin/documentation.js lint",
"test": "are-we-flow-yet lib && flow check && npm run lint && npm run self-lint && npm run test-tap",
"test-tap": "tap -t 120 --coverage --nyc-arg=--cache test/*.js test/lib test/streams"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"engines": {
"node": ">=4"
}
}