-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.11 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.11 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
41
42
43
{
"name": "json-schema-static-docs",
"version": "0.28.1",
"description": "Generates static documentation for humans based on the contents of JSON schema files (yml or json).",
"main": "lib/json-schema-static-docs.js",
"bin": {
"json-schema-static-docs": "./cli.js"
},
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tomcollins/json-schema-static-docs.git"
},
"bugs": {
"url": "https://github.com/tomcollins/json-schema-static-docs/issues"
},
"homepage": "https://tomcollins.github.io/json-schema-static-docs/",
"author": "Tom Collins",
"license": "GPL-3.0-only",
"engines": {
"node": ">=14"
},
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^10.1.0",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"extend": "^3.0.2",
"fast-glob": "^3.3.3",
"handlebars": "^4.7.7",
"jsonpointer": "^5.0.1",
"lodash": ">=4.17.21",
"make-dir": "^3.1.0",
"mkdirp": "^2.1.6",
"optimist": "^0.5.2",
"rimraf": "^5.0.10",
"yaml": "^2.2.2"
},
"devDependencies": {
"jest": "^29.5.0"
}
}