mirror of
https://github.com/documentationjs/documentation.git
synced 2026-01-18 14:17:30 +00:00
136 lines
3.3 KiB
JSON
136 lines
3.3 KiB
JSON
{
|
|
"name": "documentation",
|
|
"description": "a documentation generator",
|
|
"version": "13.2.4",
|
|
"author": "Tom MacWright",
|
|
"homepage": "https://documentation.js.org",
|
|
"bin": {
|
|
"documentation": "./bin/documentation.js"
|
|
},
|
|
"dependencies": {
|
|
"@babel/core": "7.12.3",
|
|
"@babel/generator": "7.12.1",
|
|
"@babel/parser": "7.12.3",
|
|
"@babel/traverse": "^7.12.1",
|
|
"@babel/types": "^7.12.1",
|
|
"ansi-html": "^0.0.7",
|
|
"babelify": "^10.0.0",
|
|
"chalk": "^2.3.0",
|
|
"chokidar": "^3.4.0",
|
|
"concat-stream": "^1.6.0",
|
|
"diff": "^4.0.1",
|
|
"doctrine-temporary-fork": "2.1.0",
|
|
"get-port": "^5.0.0",
|
|
"git-url-parse": "^11.1.2",
|
|
"github-slugger": "1.2.0",
|
|
"glob": "^7.1.2",
|
|
"globals-docs": "^2.4.0",
|
|
"highlight.js": "^10.7.2",
|
|
"ini": "^1.3.5",
|
|
"js-yaml": "^3.10.0",
|
|
"lodash": "^4.17.10",
|
|
"mdast-util-find-and-replace": "^1.1.1",
|
|
"mdast-util-inject": "^1.1.0",
|
|
"micromatch": "^3.1.5",
|
|
"mime": "^2.2.0",
|
|
"module-deps-sortable": "^5.0.3",
|
|
"parse-filepath": "^1.0.2",
|
|
"pify": "^5.0.0",
|
|
"read-pkg-up": "^4.0.0",
|
|
"remark": "^13.0.0",
|
|
"remark-html": "^13.0.1",
|
|
"remark-reference-links": "^5.0.0",
|
|
"remark-toc": "^7.2.0",
|
|
"resolve": "^1.8.1",
|
|
"stream-array": "^1.1.2",
|
|
"strip-json-comments": "^2.0.1",
|
|
"tiny-lr": "^1.1.0",
|
|
"unist-builder": "^2.0.3",
|
|
"unist-util-visit": "^2.0.3",
|
|
"vfile": "^4.0.0",
|
|
"vfile-reporter": "^6.0.0",
|
|
"vfile-sort": "^2.1.0",
|
|
"vinyl": "^2.1.0",
|
|
"vinyl-fs": "^3.0.2",
|
|
"yargs": "^15.3.1"
|
|
},
|
|
"optionalDependencies": {
|
|
"vue-template-compiler": "^2.6.12",
|
|
"@vue/compiler-sfc": "^3.0.11"
|
|
},
|
|
"devDependencies": {
|
|
"chdir": "0.0.0",
|
|
"cz-conventional-changelog": "2.1.0",
|
|
"documentation-schema": "0.0.1",
|
|
"eslint": "^7.23.0",
|
|
"eslint-config-prettier": "^8.1.0",
|
|
"fs-extra": "^9.0.0",
|
|
"husky": "^1.3.1",
|
|
"jest": "^26.0.0",
|
|
"json-schema": "^0.2.3",
|
|
"lint-staged": "^7.2.0",
|
|
"mock-fs": "^4.4.2",
|
|
"p-event": "^4.1.0",
|
|
"prettier": "^2.2.1",
|
|
"standard-version": "^9.2.0",
|
|
"tmp": "^0.2.1"
|
|
},
|
|
"keywords": [
|
|
"documentation",
|
|
"formatter",
|
|
"jsdoc",
|
|
"jsdoc3",
|
|
"parser",
|
|
"website"
|
|
],
|
|
"license": "ISC",
|
|
"main": "src/index.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git@github.com:documentationjs/documentation.git"
|
|
},
|
|
"scripts": {
|
|
"build": "npm run doc",
|
|
"release": "standard-version",
|
|
"prepublish": "npm run build",
|
|
"format": "prettier --write '{src,__tests__,declarations,bin,default_theme}/**/*.js'",
|
|
"doc": "node ./bin/documentation.js build src/index.js -f md --access=public > docs/NODE_API.md",
|
|
"self-lint": "node ./bin/documentation.js lint src",
|
|
"test": "eslint . && jest",
|
|
"test-ci": "eslint . && jest --runInBand"
|
|
},
|
|
"jest": {
|
|
"testPathIgnorePatterns": [
|
|
"/node_modules/",
|
|
"utils.js",
|
|
"fixture"
|
|
],
|
|
"collectCoverage": true,
|
|
"testEnvironment": "node"
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "./node_modules/cz-conventional-changelog"
|
|
}
|
|
},
|
|
"engines": {
|
|
"node": ">=10"
|
|
},
|
|
"lint-staged": {
|
|
"*.js": [
|
|
"prettier --write",
|
|
"git add"
|
|
]
|
|
},
|
|
"greenkeeper": {
|
|
"ignore": [
|
|
"remote-origin-url"
|
|
]
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
}
|
|
}
|