1
0
Fork 0
salty-dog/package.json

91 lines
2.2 KiB
JSON
Raw Normal View History

2019-06-15 20:20:04 +00:00
{
"name": "salty-dog",
2019-11-01 11:17:03 +00:00
"version": "0.7.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"
],
"main": "out/main.js",
"bin": {
"salty-dog": "out/index.js"
},
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": {
2019-09-01 13:37:55 +00:00
"@istanbuljs/nyc-config-typescript": "0.1.3",
"@microsoft/api-documenter": "7.5.6",
2019-11-03 19:13:58 +00:00
"@microsoft/api-extractor": "7.5.2",
2019-06-30 21:57:17 +00:00
"@types/bunyan": "1.8.6",
"@types/chai": "4.2.4",
2019-10-29 03:23:41 +00:00
"@types/chai-as-promised": "7.1.2",
2019-06-30 21:57:17 +00:00
"@types/deep-diff": "1.0.0",
"@types/js-yaml": "3.12.1",
"@types/lodash": "4.14.144",
2019-06-30 21:57:17 +00:00
"@types/mocha": "5.2.7",
"@types/sinon": "7.5.0",
2019-10-29 03:23:41 +00:00
"@types/sinon-chai": "3.2.3",
2019-08-30 12:20:51 +00:00
"@types/source-map-support": "0.5.0",
"@types/yargs": "13.0.3",
"ajv": "6.10.2",
2019-06-30 21:57:17 +00:00
"bunyan": "1.8.12",
"chai": "4.2.0",
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",
"js-yaml": "3.13.1",
"jsonpath-plus": "1.1.0",
"lodash": "4.17.15",
"mocha": "6.2.2",
2019-06-30 21:57:17 +00:00
"noicejs": "2.5.2",
2019-09-01 13:37:55 +00:00
"nyc": "14.1.1",
"rollup": "1.26.3",
"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",
"rollup-plugin-typescript2": "0.25.2",
"sinon": "7.5.0",
2019-10-29 03:23:41 +00:00
"sinon-chai": "3.3.0",
"source-map-support": "0.5.16",
"standard-version": "7.0.0",
"tslint": "5.20.0",
"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",
"typescript": "3.6.4",
"yargs": "14.2.0"
},
2019-09-01 07:07:35 +00:00
"dependencies": {},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript"
},
"resolutions": {
"lodash": "4.17.15"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
2019-09-01 07:07:35 +00:00
}
2019-06-15 20:20:04 +00:00
}