UNPKG

2.53 kBJSONView Raw
1{
2 "name": "@adobe/jsonschema2md",
3 "description": "Validate and document complex JSON Schemas the easy way.",
4 "version": "4.0.9",
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 "mocha": "^6.2.2",
29 "readdirp": "^3.3.0",
30 "remark-parse": "^7.0.2",
31 "remark-stringify": "^7.0.4",
32 "unified": "^8.4.2",
33 "unist-builder": "^2.0.2",
34 "unist-util-inspect": "^5.0.0",
35 "yargs": "^15.0.2"
36 },
37 "devDependencies": {
38 "@semantic-release/changelog": "^3.0.4",
39 "@semantic-release/git": "^7.0.16",
40 "@semantic-release/github": "^5.4.2",
41 "codecov": "^3.6.1",
42 "commitizen": "^4.0.3",
43 "cz-conventional-changelog": "^3.0.2",
44 "eslint": "6.5.0",
45 "eslint-config-airbnb": "17.1.1",
46 "eslint-plugin-header": "3.0.0",
47 "eslint-plugin-import": "2.18.0",
48 "eslint-plugin-jsx-a11y": "6.2.3",
49 "eslint-plugin-react": "7.14.2",
50 "ghooks": "^2.0.4",
51 "i18n-tag-schema": "^2.5.0",
52 "lint-staged": "^9.2.1",
53 "nyc": "^14.1.1",
54 "semantic-release": "^15.13.20",
55 "unist-util-select": "^3.0.0",
56 "json-logic-js": "git://github.com/axa-ch/cyclic-schemas-test.git#fix/type-key-exception"
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}