UNPKG

2.47 kBJSONView Raw
1{
2 "name": "@adobe/jsonschema2md",
3 "description": "Validate and document complex JSON Schemas the easy way.",
4 "version": "6.0.1",
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": "5.0.3",
21 "es2015-i18n-tag": "1.6.1",
22 "ferrum": "1.8.0",
23 "fs-extra": "9.1.0",
24 "github-slugger": "1.3.0",
25 "js-yaml": "4.0.0",
26 "mdast-builder": "1.1.1",
27 "mdast-util-to-string": "2.0.0",
28 "readdirp": "3.6.0",
29 "remark-gfm": "^1.0.0",
30 "remark-parse": "9.0.0",
31 "remark-stringify": "9.0.1",
32 "unified": "9.2.1",
33 "unist-util-inspect": "6.0.1",
34 "yargs": "16.2.0"
35 },
36 "devDependencies": {
37 "@semantic-release/changelog": "5.0.1",
38 "@semantic-release/git": "9.0.0",
39 "@semantic-release/github": "7.2.1",
40 "codecov": "3.8.1",
41 "commitizen": "4.2.3",
42 "cz-conventional-changelog": "3.3.0",
43 "eslint": "7.24.0",
44 "eslint-config-airbnb": "18.2.1",
45 "eslint-plugin-header": "3.1.1",
46 "eslint-plugin-import": "2.22.1",
47 "eslint-plugin-jsx-a11y": "6.4.1",
48 "eslint-plugin-react": "7.23.2",
49 "ghooks": "2.0.4",
50 "i18n-tag-schema": "2.5.0",
51 "json-logic-js": "git://github.com/axa-ch/cyclic-schemas-test.git",
52 "lint-staged": "10.5.4",
53 "mocha": "8.3.2",
54 "nyc": "15.1.0",
55 "semantic-release": "17.4.2",
56 "unist-util-select": "3.0.4"
57 },
58 "engines": {
59 "node": ">= 10.0.0"
60 },
61 "repository": {
62 "type": "git",
63 "url": "https://github.com/adobe/jsonschema2md.git"
64 },
65 "bugs": {
66 "url": "https://github.com/adobe/jsonschema2md/issues"
67 },
68 "license": "Apache-2.0",
69 "author": "",
70 "lint-staged": {
71 "*.js": "eslint"
72 },
73 "config": {
74 "commitizen": {
75 "path": "node_modules/cz-conventional-changelog"
76 },
77 "ghooks": {
78 "pre-commit": "npx lint-staged"
79 }
80 }
81}