UNPKG

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