1
0
Fork 0
salty-dog/package.json

107 lines
2.6 KiB
JSON

{
"name": "salty-dog",
"version": "0.9.1",
"description": "Rule-based JSON/YAML validator using JSON schemas",
"homepage": "https://github.com/ssube/salty-dog",
"repository": {
"type": "git",
"url": "https://github.com/ssube/salty-dog.git"
},
"keywords": [
"cli",
"json",
"json-lint",
"json-path",
"json-schema",
"json-validation",
"jsonpath",
"jsonschema",
"lint",
"tool",
"validation",
"yaml",
"yaml-lint",
"yaml-validation"
],
"type": "module",
"main": "out/index.js",
"bin": {
"salty-dog": "out/bundle/index.cjs"
},
"directories": {
"doc": "docs",
"test": "test"
},
"exports": {
"./app": "./out/src/app.js",
"./bundle": "./out/bundle/index.cjs"
},
"scripts": {
"build": "make",
"test": "make test"
},
"author": "ssube",
"license": "MIT",
"devDependencies": {
"@apextoaster/js-utils": "0.5.0",
"@apextoaster/js-yaml-schema": "0.5.0",
"@istanbuljs/nyc-config-typescript": "1.0.2",
"@istanbuljs/schema": "0.1.3",
"@microsoft/api-documenter": "7.19.24",
"@microsoft/api-extractor": "7.33.6",
"@types/bunyan": "1.8.8",
"@types/chai": "4.3.4",
"@types/chai-as-promised": "7.1.5",
"@types/deep-diff": "1.0.2",
"@types/js-yaml": "4.0.5",
"@types/lodash": "4.14.191",
"@types/minimatch": "5.1.2",
"@types/mocha": "10.0.1",
"@types/node": "18.11.10",
"@types/sinon": "10.0.13",
"@types/sinon-chai": "3.2.9",
"@types/source-map-support": "0.5.6",
"@types/yargs": "17.0.13",
"@typescript-eslint/eslint-plugin": "5.48.0",
"@typescript-eslint/parser": "5.48.0",
"ajv": "8.11.2",
"bunyan": "1.8.15",
"c8": "7.12.0",
"chai": "4.3.7",
"chai-as-promised": "7.1.1",
"deep-diff": "1.0.2",
"esbuild": "0.16.3",
"eslint": "8.31.0",
"eslint-plugin-chai": "0.0.1",
"eslint-plugin-chai-expect": "3.0.0",
"eslint-plugin-chai-expect-keywords": "2.1.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-mocha": "10.1.0",
"eslint-plugin-no-null": "1.0.2",
"eslint-plugin-sonarjs": "0.17.0",
"js-yaml": "4.1.0",
"jsonpath-plus": "7.2.0",
"lodash": "4.17.21",
"memfs": "3.4.12",
"minimatch": "5.1.1",
"mocha": "10.2.0",
"noicejs": "4.0.0",
"nyc": "15.1.0",
"sinon": "15.0.1",
"sinon-chai": "3.7.0",
"source-map-support": "0.5.21",
"standard-version": "9.5.0",
"typescript": "4.9.4",
"yargs": "17.6.2"
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript"
},
"resolutions": {
"lodash": "4.17.21"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}