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