Comparing version 7.0.0 to 7.1.0
# Changelog | ||
## v7.1.0 | ||
Added junit report #171 @Lootjs. | ||
## v7.0.0 | ||
@@ -4,0 +7,0 @@ - Drop support for Node.js < 10. |
@@ -15,2 +15,3 @@ 'use strict'; | ||
const jsonReport = require('./json'); | ||
const junitReport = require('./junit'); | ||
const markdownReport = require('./markdown'); | ||
@@ -27,2 +28,3 @@ | ||
jsonReport, | ||
junitReport, | ||
markdownReport, | ||
@@ -29,0 +31,0 @@ ]; |
The MIT License (MIT) | ||
© 2020 Denis Seleznev, <hcodes@yandex.ru> | ||
© 2021 Denis Seleznev, <hcodes@yandex.ru> | ||
@@ -5,0 +5,0 @@ Permission is hereby granted, free of charge, to any person obtaining a copy |
@@ -13,3 +13,3 @@ { | ||
"description": "Search tool typos in the text, files and websites", | ||
"version": "7.0.0", | ||
"version": "7.1.0", | ||
"license": "MIT", | ||
@@ -48,2 +48,3 @@ "homepage": "https://github.com/hcodes/yaspeller", | ||
"node-fetch": "^2.6.0", | ||
"parse-json": "^5.0.0", | ||
"strip-json-comments": "^3.0.1", | ||
@@ -54,8 +55,7 @@ "xml2js": "^0.4.23", | ||
"devDependencies": { | ||
"chai": "^4.2.0", | ||
"eslint": "^6.8.0", | ||
"mocha": "^7.1.1", | ||
"nyc": "^14.1.1", | ||
"parse-json": "^5.0.0", | ||
"sinon": "^9.0.1" | ||
"chai": "^4.3.4", | ||
"eslint": "^7.32.0", | ||
"mocha": "^9.1.2", | ||
"nyc": "^15.1.0", | ||
"sinon": "^11.1.2" | ||
}, | ||
@@ -62,0 +62,0 @@ "engines": { |
@@ -88,3 +88,3 @@ yaspeller | ||
#### `--report <type>` | ||
Set type of report: `console`, `html`, `markdown` or `json`.<br/> | ||
Set type of report: `console`, `html`, `markdown`, `junit` or `json`.<br/> | ||
Default: `console`<br/> | ||
@@ -91,0 +91,0 @@ Example: `console,html,custom_report.js` |
@@ -79,3 +79,3 @@ yaspeller | ||
#### `--report <type>` | ||
Задать вид отчёта: `console`, `html`, `markdown` или `json`.<br/> | ||
Задать вид отчёта: `console`, `html`, `markdown`, `junit` или `json`.<br/> | ||
По умолчанию: `console`<br/> | ||
@@ -82,0 +82,0 @@ Пример: `console,html,custom_report.js` |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
94980
5
40
2299
16
12
+ Addedparse-json@^5.0.0