1 | {
|
2 | "name": "@adobe/jsonschema2md",
|
3 | "description": "Validate and document complex JSON Schemas the easy way.",
|
4 | "version": "4.0.12",
|
5 | "main": "lib/main.js",
|
6 | "bin": {
|
7 | "jsonschema2md": "./cli.js"
|
8 | },
|
9 | "scripts": {
|
10 | "semantic-release": "semantic-release",
|
11 | "commit": "git-cz",
|
12 | "lint": "eslint .",
|
13 | "lint-fix": "eslint . --fix",
|
14 | "start": "node cli.js",
|
15 | "examples": "node cli.js -d examples/schemas/ -o examples/docs/ -x examples/generated-schemas/",
|
16 | "test": " nyc --reporter=text --reporter=lcov --check-coverage --branches 80 --statements 95 --lines 95 mocha && node lib/locales/update.js",
|
17 | "test-ci": "nyc --reporter=text --reporter=lcov --check-coverage --branches 80 --statements 95 --lines 95 mocha --reporter xunit --reporter-options output=./junit/test-results.xml; codecov"
|
18 | },
|
19 | "dependencies": {
|
20 | "@adobe/helix-log": "^4.4.0",
|
21 | "es2015-i18n-tag": "1.6.1",
|
22 | "ferrum": "^1.4.1",
|
23 | "fs-extra": "^8.1.0",
|
24 | "github-slugger": "^1.2.1",
|
25 | "js-yaml": "^3.13.1",
|
26 | "mdast-builder": "^1.1.1",
|
27 | "mdast-util-to-string": "^1.0.7",
|
28 | "readdirp": "^3.3.0",
|
29 | "remark-parse": "^7.0.2",
|
30 | "remark-stringify": "^7.0.4",
|
31 | "unified": "^8.4.2",
|
32 | "unist-util-inspect": "^5.0.0",
|
33 | "yargs": "^15.0.2"
|
34 | },
|
35 | "devDependencies": {
|
36 | "@semantic-release/changelog": "^3.0.4",
|
37 | "@semantic-release/git": "^7.0.16",
|
38 | "@semantic-release/github": "^5.4.2",
|
39 | "codecov": "^3.6.1",
|
40 | "commitizen": "^4.0.3",
|
41 | "cz-conventional-changelog": "^3.0.2",
|
42 | "eslint": "6.5.0",
|
43 | "eslint-config-airbnb": "17.1.1",
|
44 | "eslint-plugin-header": "3.0.0",
|
45 | "eslint-plugin-import": "2.18.0",
|
46 | "eslint-plugin-jsx-a11y": "6.2.3",
|
47 | "eslint-plugin-react": "7.14.2",
|
48 | "ghooks": "^2.0.4",
|
49 | "i18n-tag-schema": "^2.5.0",
|
50 | "json-logic-js": "git://github.com/axa-ch/cyclic-schemas-test.git",
|
51 | "lint-staged": "^9.2.1",
|
52 | "mocha": "^6.2.2",
|
53 | "nyc": "^14.1.1",
|
54 | "semantic-release": "^15.13.20",
|
55 | "unist-util-select": "^3.0.0"
|
56 | },
|
57 | "engines": {
|
58 | "node": ">= 10.0.0"
|
59 | },
|
60 | "repository": {
|
61 | "type": "git",
|
62 | "url": "https://github.com/adobe/jsonschema2md.git"
|
63 | },
|
64 | "bugs": {
|
65 | "url": "https://github.com/adobe/jsonschema2md/issues"
|
66 | },
|
67 | "license": "Apache-2.0",
|
68 | "author": "",
|
69 | "lint-staged": {
|
70 | "*.js": "eslint"
|
71 | },
|
72 | "config": {
|
73 | "commitizen": {
|
74 | "path": "node_modules/cz-conventional-changelog"
|
75 | },
|
76 | "ghooks": {
|
77 | "pre-commit": "npx lint-staged"
|
78 | }
|
79 | }
|
80 | }
|