UNPKG

3.42 kBJSONView Raw
1{
2 "name": "documentation",
3 "description": "a documentation generator",
4 "version": "13.2.5",
5 "author": "Tom MacWright",
6 "homepage": "https://documentation.js.org",
7 "bin": {
8 "documentation": "./bin/documentation.js"
9 },
10 "dependencies": {
11 "@babel/core": "7.12.3",
12 "@babel/generator": "7.12.1",
13 "@babel/parser": "7.12.3",
14 "@babel/traverse": "^7.12.1",
15 "@babel/types": "^7.12.1",
16 "ansi-html": "^0.0.7",
17 "babelify": "^10.0.0",
18 "chalk": "^2.3.0",
19 "chokidar": "^3.4.0",
20 "concat-stream": "^1.6.0",
21 "diff": "^4.0.1",
22 "doctrine-temporary-fork": "2.1.0",
23 "get-port": "^5.0.0",
24 "git-url-parse": "^11.1.2",
25 "github-slugger": "1.2.0",
26 "glob": "^7.1.2",
27 "globals-docs": "^2.4.0",
28 "highlight.js": "^10.7.2",
29 "ini": "^1.3.5",
30 "js-yaml": "^3.10.0",
31 "lodash": "^4.17.10",
32 "mdast-util-find-and-replace": "^1.1.1",
33 "mdast-util-inject": "^1.1.0",
34 "micromatch": "^3.1.5",
35 "mime": "^2.2.0",
36 "module-deps-sortable": "^5.0.3",
37 "parse-filepath": "^1.0.2",
38 "pify": "^5.0.0",
39 "read-pkg-up": "^4.0.0",
40 "remark": "^13.0.0",
41 "remark-gfm": "^1.0.0",
42 "remark-html": "^13.0.1",
43 "remark-reference-links": "^5.0.0",
44 "remark-toc": "^7.2.0",
45 "resolve": "^1.8.1",
46 "stream-array": "^1.1.2",
47 "strip-json-comments": "^2.0.1",
48 "tiny-lr": "^1.1.0",
49 "unist-builder": "^2.0.3",
50 "unist-util-visit": "^2.0.3",
51 "vfile": "^4.0.0",
52 "vfile-reporter": "^6.0.0",
53 "vfile-sort": "^2.1.0",
54 "vinyl": "^2.1.0",
55 "vinyl-fs": "^3.0.2",
56 "yargs": "^15.3.1"
57 },
58 "optionalDependencies": {
59 "@vue/compiler-sfc": "^3.0.11",
60 "vue-template-compiler": "^2.6.12"
61 },
62 "devDependencies": {
63 "chdir": "0.0.0",
64 "cz-conventional-changelog": "2.1.0",
65 "documentation-schema": "0.0.1",
66 "eslint": "^7.23.0",
67 "eslint-config-prettier": "^8.1.0",
68 "fs-extra": "^9.0.0",
69 "husky": "^1.3.1",
70 "jest": "^26.0.0",
71 "json-schema": "^0.2.3",
72 "lint-staged": "^7.2.0",
73 "mock-fs": "^4.4.2",
74 "p-event": "^4.1.0",
75 "prettier": "^2.2.1",
76 "standard-version": "^9.2.0",
77 "tmp": "^0.2.1"
78 },
79 "keywords": [
80 "documentation",
81 "formatter",
82 "jsdoc",
83 "jsdoc3",
84 "parser",
85 "website"
86 ],
87 "license": "ISC",
88 "main": "src/index.js",
89 "repository": {
90 "type": "git",
91 "url": "git@github.com:documentationjs/documentation.git"
92 },
93 "scripts": {
94 "build": "npm run doc",
95 "release": "standard-version",
96 "prepublish": "npm run build",
97 "format": "prettier --write '{src,__tests__,declarations,bin,default_theme}/**/*.js'",
98 "doc": "node ./bin/documentation.js build src/index.js -f md --access=public > docs/NODE_API.md",
99 "self-lint": "node ./bin/documentation.js lint src",
100 "test": "eslint . && jest",
101 "test-ci": "eslint . && jest --runInBand"
102 },
103 "jest": {
104 "testPathIgnorePatterns": [
105 "/node_modules/",
106 "utils.js",
107 "fixture"
108 ],
109 "collectCoverage": true,
110 "testEnvironment": "node"
111 },
112 "config": {
113 "commitizen": {
114 "path": "./node_modules/cz-conventional-changelog"
115 }
116 },
117 "engines": {
118 "node": ">=10"
119 },
120 "lint-staged": {
121 "*.js": [
122 "prettier --write",
123 "git add"
124 ]
125 },
126 "greenkeeper": {
127 "ignore": [
128 "remote-origin-url"
129 ]
130 },
131 "husky": {
132 "hooks": {
133 "pre-commit": "lint-staged"
134 }
135 }
136}