UNPKG

4.48 kBJSONView Raw
1{
2 "name": "documentation",
3 "description": "a documentation generator",
4 "version": "13.1.0",
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/plugin-proposal-class-properties": "^7.12.1",
15 "@babel/plugin-proposal-decorators": "^7.12.1",
16 "@babel/plugin-proposal-do-expressions": "^7.12.1",
17 "@babel/plugin-proposal-export-default-from": "^7.12.1",
18 "@babel/plugin-proposal-export-namespace-from": "^7.12.1",
19 "@babel/plugin-proposal-function-bind": "^7.12.1",
20 "@babel/plugin-proposal-function-sent": "^7.12.1",
21 "@babel/plugin-proposal-json-strings": "^7.12.1",
22 "@babel/plugin-proposal-logical-assignment-operators": "^7.12.1",
23 "@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1",
24 "@babel/plugin-proposal-numeric-separator": "^7.12.1",
25 "@babel/plugin-proposal-optional-chaining": "^7.12.1",
26 "@babel/plugin-proposal-pipeline-operator": "^7.12.1",
27 "@babel/plugin-proposal-private-methods": "^7.12.1",
28 "@babel/plugin-proposal-throw-expressions": "^7.12.1",
29 "@babel/plugin-syntax-dynamic-import": "^7.8.3",
30 "@babel/plugin-syntax-import-meta": "^7.10.4",
31 "@babel/preset-env": "^7.12.1",
32 "@babel/preset-flow": "^7.9.0",
33 "@babel/preset-react": "^7.9.4",
34 "@babel/preset-stage-0": "^7.8.3",
35 "@babel/traverse": "^7.12.1",
36 "@babel/types": "^7.12.1",
37 "ansi-html": "^0.0.7",
38 "babelify": "^10.0.0",
39 "chalk": "^2.3.0",
40 "chokidar": "^3.4.0",
41 "concat-stream": "^1.6.0",
42 "diff": "^4.0.1",
43 "doctrine-temporary-fork": "2.1.0",
44 "get-port": "^5.0.0",
45 "git-url-parse": "^11.1.2",
46 "github-slugger": "1.2.0",
47 "glob": "^7.1.2",
48 "globals-docs": "^2.4.0",
49 "highlight.js": "^9.15.5",
50 "ini": "^1.3.5",
51 "js-yaml": "^3.10.0",
52 "lodash": "^4.17.10",
53 "mdast-util-inject": "^1.1.0",
54 "micromatch": "^3.1.5",
55 "mime": "^2.2.0",
56 "module-deps-sortable": "^5.0.1",
57 "parse-filepath": "^1.0.2",
58 "pify": "^5.0.0",
59 "read-pkg-up": "^4.0.0",
60 "remark": "^9.0.0",
61 "remark-html": "^8.0.0",
62 "remark-reference-links": "^4.0.1",
63 "remark-toc": "^5.0.0",
64 "resolve": "^1.8.1",
65 "stream-array": "^1.1.2",
66 "strip-json-comments": "^2.0.1",
67 "tiny-lr": "^1.1.0",
68 "unist-builder": "^1.0.2",
69 "unist-util-visit": "^1.3.0",
70 "vfile": "^4.0.0",
71 "vfile-reporter": "^6.0.0",
72 "vfile-sort": "^2.1.0",
73 "vinyl": "^2.1.0",
74 "vinyl-fs": "^3.0.2",
75 "vue-template-compiler": "^2.5.16",
76 "yargs": "^15.3.1"
77 },
78 "devDependencies": {
79 "babel-core": "^7.0.0-bridge.0",
80 "babel-eslint": "^10.1.0",
81 "chdir": "0.0.0",
82 "cz-conventional-changelog": "2.1.0",
83 "documentation-schema": "0.0.1",
84 "eslint": "^7.1.0",
85 "eslint-config-prettier": "^6.11.0",
86 "fs-extra": "^9.0.0",
87 "husky": "^1.3.1",
88 "jest": "^26.0.0",
89 "json-schema": "^0.2.3",
90 "lint-staged": "^7.2.0",
91 "mock-fs": "^4.4.2",
92 "p-event": "^4.1.0",
93 "prettier": "^2.0.5",
94 "standard-version": "^8.0.0",
95 "tmp": "^0.2.1"
96 },
97 "keywords": [
98 "documentation",
99 "formatter",
100 "jsdoc",
101 "jsdoc3",
102 "parser",
103 "website"
104 ],
105 "license": "ISC",
106 "main": "src/index.js",
107 "repository": {
108 "type": "git",
109 "url": "git@github.com:documentationjs/documentation.git"
110 },
111 "scripts": {
112 "build": "npm run doc",
113 "release": "standard-version",
114 "prepublish": "npm run build",
115 "format": "prettier --write '{src,__tests__,declarations,bin,default_theme}/**/*.js'",
116 "doc": "node ./bin/documentation.js build src/index.js -f md --access=public > docs/NODE_API.md",
117 "self-lint": "node ./bin/documentation.js lint src",
118 "test": "eslint . && jest",
119 "test-ci": "eslint . && jest --runInBand"
120 },
121 "jest": {
122 "testPathIgnorePatterns": [
123 "/node_modules/",
124 "utils.js",
125 "fixture"
126 ],
127 "collectCoverage": true,
128 "testEnvironment": "node"
129 },
130 "config": {
131 "commitizen": {
132 "path": "./node_modules/cz-conventional-changelog"
133 }
134 },
135 "engines": {
136 "node": ">=10"
137 },
138 "lint-staged": {
139 "*.js": [
140 "prettier --write",
141 "git add"
142 ]
143 },
144 "greenkeeper": {
145 "ignore": [
146 "remote-origin-url"
147 ]
148 },
149 "husky": {
150 "hooks": {
151 "pre-commit": "lint-staged"
152 }
153 }
154}