1
0
Fork 0
salty-dog/package.json

98 lines
2.4 KiB
JSON
Raw Normal View History

2019-06-15 20:20:04 +00:00
{
"name": "salty-dog",
2022-02-25 04:28:33 +00:00
"version": "0.9.1",
2019-06-30 22:54:01 +00:00
"description": "Rule-based JSON/YAML validator using JSON schemas",
"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"
},
2019-06-15 20:20:04 +00:00
"directories": {
"doc": "docs",
"test": "test"
},
"scripts": {
"build": "make",
"test": "make test"
2019-06-15 20:20:04 +00:00
},
"author": "ssube",
"license": "MIT",
"devDependencies": {
"@apextoaster/js-utils": "0.4.1",
"@apextoaster/js-yaml-schema": "0.5.0",
"@istanbuljs/nyc-config-typescript": "1.0.2",
"@istanbuljs/schema": "0.1.3",
"@microsoft/api-documenter": "7.15.3",
"@microsoft/api-extractor": "7.19.4",
"@types/bunyan": "1.8.8",
"@types/chai": "4.3.0",
"@types/chai-as-promised": "7.1.5",
"@types/deep-diff": "1.0.1",
"@types/js-yaml": "4.0.5",
"@types/lodash": "4.14.180",
"@types/minimatch": "3.0.5",
"@types/mocha": "9.1.0",
"@types/node": "16.11.26",
"@types/sinon": "10.0.11",
"@types/sinon-chai": "3.2.8",
"@types/source-map-support": "0.5.4",
"@types/yargs": "17.0.10",
"@typescript-eslint/eslint-plugin": "5.16.0",
"@typescript-eslint/parser": "5.16.0",
"ajv": "8.11.0",
"bunyan": "1.8.15",
"c8": "7.11.0",
"chai": "4.3.6",
2019-10-29 03:23:41 +00:00
"chai-as-promised": "7.1.1",
2019-06-30 21:57:17 +00:00
"deep-diff": "1.0.2",
"esbuild": "0.14.27",
"eslint": "8.11.0",
2019-11-09 23:52:57 +00:00
"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.25.4",
"eslint-plugin-mocha": "10.0.3",
2019-11-09 23:52:57 +00:00
"eslint-plugin-no-null": "1.0.2",
"eslint-plugin-sonarjs": "0.12.0",
"js-yaml": "4.1.0",
"jsonpath-plus": "6.0.1",
2021-03-27 23:42:47 +00:00
"lodash": "4.17.21",
"memfs": "3.4.1",
"minimatch": "5.0.1",
"mocha": "9.2.1",
"noicejs": "4.0.0",
"nyc": "15.1.0",
"sinon": "13.0.1",
"sinon-chai": "3.7.0",
"source-map-support": "0.5.21",
"standard-version": "9.3.2",
"typescript": "4.6.2",
"yargs": "17.4.0"
},
2019-09-01 07:07:35 +00:00
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript"
},
"resolutions": {
"lodash": "4.17.21"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
2019-09-01 07:07:35 +00:00
}
2019-06-15 20:20:04 +00:00
}