forked from jboxman/openshift-apidocs-gen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.01 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
{
"name": "openshift-apidocs-gen",
"version": "1.0.5",
"description": "OpenShift API reference documentation generator.",
"main": "index.js",
"bin": {
"openshift-apidocs-gen": "./openshift-apidocs-gen"
},
"scripts": {
"test": "tape tests/**/*.test.js",
"doc": "find build -type f -name '*.adoc' | xargs -L1 -I^ -P1 asciidoctor -a toc -d book ^",
"clean": "rimraf build/"
},
"keywords": [
"openshift",
"kubernetes",
"openapi"
],
"author": "Jason Boxman <[email protected]> (http://linkedin.com/in/jboxman)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jboxman/openshift-apidocs-gen.git"
},
"bugs": {
"url": "https://github.com/jboxman/openshift-apidocs-gen/issues"
},
"dependencies": {
"commander": "^5.1.0",
"firstline": "^2.0.2",
"handlebars": "^4.5.3",
"js-yaml": "^3.13.1",
"node-dir": "^0.1.17",
"rimraf": "^3.0.2"
},
"devDependencies": {
"riteway": "^6.1.2",
"tape": "^4.13.2"
}
}