Socket
Socket
Sign inDemoInstall

winston-array-transport

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

winston-array-transport - npm Package Compare versions

Comparing version 1.1.3 to 1.1.4

24

CHANGELOG.md

@@ -0,1 +1,25 @@

## [1.1.4](https://github.com/pustovitDmytro/winston-array-transport/compare/v1.1.3...v1.1.4) (2021-06-12)
### Chore
* fixes npm audit ([c3beccd](https://github.com/pustovitDmytro/winston-array-transport/commit/c3beccdf1926d72dcf9b13cd153e37916f1a8d13))
* integrate fossa ([b65e961](https://github.com/pustovitDmytro/winston-array-transport/commit/b65e961a5ae500b1b5fd12fce3436e71c1518e35))
* integrate node-package-tester ([9d53bf3](https://github.com/pustovitDmytro/winston-array-transport/commit/9d53bf30d295368e7f1e925c18b00e48cc16014e))
* Lock file maintenance ([3291a21](https://github.com/pustovitDmytro/winston-array-transport/commit/3291a2144ee143dc327f6fb4a8b82e62e07b1c1f))
* Lock file maintenance ([f674344](https://github.com/pustovitDmytro/winston-array-transport/commit/f6743443aba7031e3d21dd90d97bb738dfda2da8))
* set YARGS_MIN_NODE_VERSION 10 ([9b6bef9](https://github.com/pustovitDmytro/winston-array-transport/commit/9b6bef9d89f8f0c958ee1fe60f20475dd20c8276))
* Update dependency eslint-plugin-unicorn to v33 ([bfa00ff](https://github.com/pustovitDmytro/winston-array-transport/commit/bfa00ff354dfb9ffe717e9a36f7a938d44b32611))
* Update dependency eslint-plugin-unicorn to v33 ([25d2a39](https://github.com/pustovitDmytro/winston-array-transport/commit/25d2a39e89775a7a5ced114378f86b4ce4bcbe41))
* Update dependency glob-parent to 5.1.2 [SECURITY] ([c957512](https://github.com/pustovitDmytro/winston-array-transport/commit/c957512cf496d9b99e2278b44b6bb9da545f57a8))
* Update dependency mocha to v9 ([93b7a17](https://github.com/pustovitDmytro/winston-array-transport/commit/93b7a1783ea97a7bcd94d570ef33b61314c93746))
* update eslint ([6b174b1](https://github.com/pustovitDmytro/winston-array-transport/commit/6b174b184a792fc282ef3228079f23fa81f2bcb5))
* update eslint-config-incredible ([2f39edb](https://github.com/pustovitDmytro/winston-array-transport/commit/2f39edb6b44795918e8650be3e727b8e7abb61b7))
* update eslint-config-incredible ([58c31d2](https://github.com/pustovitDmytro/winston-array-transport/commit/58c31d295fa2df7cb3dceda8db6a417144a4b1c3))
### Fix
* fixes es6 export default module.exports compartibility ([adcdcd1](https://github.com/pustovitDmytro/winston-array-transport/commit/adcdcd1d2fcf933cff1c812c7bb9ff8ac7571781))
* set babel target node version to 10 ([f736568](https://github.com/pustovitDmytro/winston-array-transport/commit/f73656838a20d11da6680579cfccc24a9f4a1201))
## [1.1.3](https://github.com/pustovitDmytro/winston-array-transport/compare/v1.1.2...v1.1.3) (2021-05-25)

@@ -2,0 +26,0 @@

5

lib/index.js

@@ -18,2 +18,3 @@ "use strict";

/* eslint-disable promise/prefer-await-to-callbacks */
class ArrayTransport extends _winstonTransport.default {

@@ -43,2 +44,4 @@ constructor(options = {}) {

exports.default = ArrayTransport;
exports.default = ArrayTransport;
module.exports = exports.default;
module.exports.default = exports.default;

23

package.json
{
"name": "winston-array-transport",
"version": "1.1.3",
"version": "1.1.4",
"description": "write logs to js Array",

@@ -10,5 +10,5 @@ "main": "./lib",

"test:security": "npm audit && npm run test:lock",
"test:lint": "eslint src bin tests",
"test:lint": "eslint src bin tests --no-error-on-unmatched-pattern",
"test:mocha": "mocha --config .mocharc.json 'tests/**/*test.js'",
"test:package": "./bin/test-package.sh",
"test:package": "npt test -c .package-tester.json",
"test:coverage": "BUILD=0 MODE=test nyc mocha --config .mocharc.json 'tests/**/*test.js'",

@@ -45,3 +45,3 @@ "test:debt": "jscpd src --config .jscpd.json",

"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/cli": "^7.14.5",
"@babel/core": "^7.3.4",

@@ -69,2 +69,3 @@ "@babel/node": "^7.2.2",

"@semantic-release/release-notes-generator": "^9.0.0",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-plugin-module-resolver": "^4.0.0",

@@ -77,6 +78,15 @@ "chai": "^4.2.0",

"eslint": "^7.0.0",
"eslint-config-incredible": "^1.9.0",
"eslint-config-incredible": "^2.1.3",
"eslint-plugin-censor": "^1.3.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-markdown": "^2.2.0",
"eslint-plugin-mocha": "^9.0.0",
"eslint-plugin-no-secrets": "^0.8.9",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-regexp": "^0.11.0",
"eslint-plugin-scanjs-rules": "^0.2.1",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-sonarjs": "^0.7.0",
"eslint-plugin-unicorn": "^33.0.0",
"fs-extra": "^10.0.0",

@@ -86,4 +96,5 @@ "husky": "^6.0.0",

"lockfile-lint": "^4.6.2",
"mocha": "^8.0.0",
"mocha": "^9.0.0",
"mocha-junit-reporter": "^2.0.0",
"node-package-tester": "^1.0.1",
"nyc": "^15.0.0",

@@ -90,0 +101,0 @@ "rollup": "^2.45.2",

@@ -22,2 +22,3 @@ # winston-array-transport

[![Commit activity][commit-activity-badge]][github]
[![FOSSA][fossa-badge]][fossa-url]
[![License][badge-lic]][github]

@@ -130,2 +131,5 @@

[fossa-badge]: https://app.fossa.com/api/projects/custom%2B24828%2Fwinston-array-transport.svg?type=shield
[fossa-url]: https://app.fossa.com/projects/custom%2B24828%2Fwinston-array-transport?ref=badge_shield
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc