2019-06-15 20:20:04 +00:00
|
|
|
{
|
2019-06-15 23:43:18 +00:00
|
|
|
"name": "salty-dog",
|
2019-07-04 17:06:06 +00:00
|
|
|
"version": "0.6.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"
|
|
|
|
],
|
2019-06-30 21:25:05 +00:00
|
|
|
"main": "out/main.js",
|
2019-06-29 21:49:27 +00:00
|
|
|
"bin": {
|
2019-06-30 00:36:41 +00:00
|
|
|
"salty-dog": "out/index.js"
|
2019-06-29 21:49:27 +00:00
|
|
|
},
|
2019-06-15 20:20:04 +00:00
|
|
|
"directories": {
|
|
|
|
"doc": "docs",
|
|
|
|
"test": "test"
|
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"test": "out/harness.js"
|
|
|
|
},
|
|
|
|
"author": "ssube",
|
|
|
|
"license": "MIT",
|
|
|
|
"devDependencies": {
|
2019-09-01 13:37:55 +00:00
|
|
|
"@istanbuljs/nyc-config-typescript": "0.1.3",
|
2019-06-30 21:57:17 +00:00
|
|
|
"@types/bunyan": "1.8.6",
|
2019-09-17 11:03:22 +00:00
|
|
|
"@types/chai": "4.2.3",
|
2019-06-30 21:57:17 +00:00
|
|
|
"@types/deep-diff": "1.0.0",
|
|
|
|
"@types/js-yaml": "3.12.1",
|
2019-10-07 23:39:11 +00:00
|
|
|
"@types/lodash": "4.14.142",
|
2019-06-30 21:57:17 +00:00
|
|
|
"@types/mocha": "5.2.7",
|
2019-10-01 17:09:56 +00:00
|
|
|
"@types/sinon": "7.5.0",
|
2019-08-30 12:20:51 +00:00
|
|
|
"@types/source-map-support": "0.5.0",
|
2019-09-26 13:42:59 +00:00
|
|
|
"@types/yargs": "13.0.3",
|
2019-07-14 14:18:18 +00:00
|
|
|
"ajv": "6.10.2",
|
2019-06-30 21:57:17 +00:00
|
|
|
"bunyan": "1.8.12",
|
|
|
|
"chai": "4.2.0",
|
|
|
|
"deep-diff": "1.0.2",
|
|
|
|
"js-yaml": "3.13.1",
|
2019-09-25 20:38:58 +00:00
|
|
|
"jsonpath-plus": "1.1.0",
|
2019-08-21 14:38:03 +00:00
|
|
|
"lodash": "4.17.15",
|
2019-09-29 13:43:57 +00:00
|
|
|
"mocha": "6.2.1",
|
2019-06-30 21:57:17 +00:00
|
|
|
"noicejs": "2.5.2",
|
2019-09-01 13:37:55 +00:00
|
|
|
"nyc": "14.1.1",
|
2019-10-05 06:14:00 +00:00
|
|
|
"rollup": "1.23.1",
|
2019-08-28 04:29:20 +00:00
|
|
|
"rollup-plugin-commonjs": "10.1.0",
|
2019-06-30 21:57:17 +00:00
|
|
|
"rollup-plugin-json": "4.0.0",
|
|
|
|
"rollup-plugin-multi-entry": "2.1.0",
|
|
|
|
"rollup-plugin-node-resolve": "5.2.0",
|
|
|
|
"rollup-plugin-replace": "2.2.0",
|
2019-09-11 13:48:37 +00:00
|
|
|
"rollup-plugin-tslint": "0.2.2",
|
2019-09-26 21:40:18 +00:00
|
|
|
"rollup-plugin-typescript2": "0.24.3",
|
2019-09-23 15:22:47 +00:00
|
|
|
"sinon": "7.5.0",
|
2019-08-30 12:20:51 +00:00
|
|
|
"source-map-support": "0.5.13",
|
2019-08-21 19:46:06 +00:00
|
|
|
"standard-version": "7.0.0",
|
2019-09-12 00:36:49 +00:00
|
|
|
"tslint": "5.20.0",
|
2019-09-14 00:37:38 +00:00
|
|
|
"tslint-clean-code": "0.2.10",
|
2019-09-11 13:48:37 +00:00
|
|
|
"tslint-microsoft-contrib": "6.2.0",
|
|
|
|
"tslint-sonarts": "1.9.0",
|
2019-10-09 20:44:53 +00:00
|
|
|
"typescript": "3.6.4",
|
2019-10-07 01:09:09 +00:00
|
|
|
"yargs": "14.2.0"
|
2019-07-01 00:40:30 +00:00
|
|
|
},
|
2019-09-01 07:07:35 +00:00
|
|
|
"dependencies": {},
|
|
|
|
"nyc": {
|
|
|
|
"extends": "@istanbuljs/nyc-config-typescript"
|
2019-09-11 01:26:28 +00:00
|
|
|
},
|
|
|
|
"resolutions": {
|
|
|
|
"lodash": "4.17.15"
|
2019-09-01 07:07:35 +00:00
|
|
|
}
|
2019-06-15 20:20:04 +00:00
|
|
|
}
|