-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 984 Bytes
/
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
{
"name": "openshift-apidocs-gen",
"version": "2.0.0",
"description": "OpenShift API reference documentation generator.",
"main": "lib/index.js",
"bin": {
"openshift-apidocs-gen": "./openshift-apidocs-gen"
},
"scripts": {
"test": "riteway 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]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jab-rh/openshift-apidocs-gen.git"
},
"bugs": {
"url": "https://github.com/jab-rh/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"
}
}