-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.41 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.41 KB
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
{
"name": "docker-jsdoc2md",
"version": "1.1.0",
"description": "Docker image to run jsdoc2md (jsdoc-to-markdown).",
"keywords": [
"api-documentation",
"docker",
"documentation",
"jsdoc",
"jsdoc-to-markdown",
"jsdoc2md",
"markdown"
],
"homepage": "https://github.com/stefanwalther/docker-jsdoc2md#readme",
"bugs": {
"url": "https://github.com/stefanwalther/docker-jsdoc2md/issues"
},
"license": "MIT",
"author": "Stefan Walther <swr.nixda@gmail.com> (http://qliksite.io)",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/stefanwalther/docker-jsdoc2md.git"
},
"scripts": {
"d-run": "docker run --rm -v ${PWD}:/opt/jsdoc2md stefanwalther/jsdoc2md",
"docs": "docker run --rm -v ${PWD}:/opt/verb stefanwalther/verb",
"changelog--old": "docker run -it --rm -v $(pwd):/app prooph/github-changelog-generator",
"test": "docker run --rm -v ${PWD}:/opt/jsdoc2md stefanwalther/jsdoc2md test/fixtures/index.js > test/output.md",
"changelog": "docker run --rm -v ${PWD}:/app stefanwalther/github-changelog-generator -t ${GITHUB_CHANGELOG_GENERATOR_TOKEN} -u stefanwalther -p docker-jsdoc2md"
},
"dependencies": {
"babel-core": "^6.26.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"jsdoc-babel": "^0.5.0",
"jsdoc-to-markdown": "^5.0.0"
},
"devDependencies": {}
}