From 7bf79ae9fd364b49ba69a35e9e59113a081a5a96 Mon Sep 17 00:00:00 2001 From: Corey Farrell Date: Thu, 4 Apr 2019 11:30:32 -0400 Subject: [PATCH] fix: Update wrap-ansi to fix compatibility with latest versions of chalk. (#60) BREAKING CHANGE: Drop support for node < 6. --- .travis.yml | 2 +- package.json | 22 +++++++++++----------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.travis.yml b/.travis.yml index 1716819..7101d78 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,6 @@ language: node_js node_js: - - "4" - "6" - "8" + - "10" after_script: npm run coverage diff --git a/package.json b/package.json index 34c0a7b..abbc612 100644 --- a/package.json +++ b/package.json @@ -45,23 +45,23 @@ "author": "Ben Coe ", "license": "ISC", "dependencies": { - "string-width": "^2.1.1", - "strip-ansi": "^4.0.0", - "wrap-ansi": "^2.0.0" + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" }, "devDependencies": { - "chai": "^3.5.0", - "chalk": "^1.1.2", - "coveralls": "^2.11.8", - "mocha": "^3.0.0", - "nyc": "^10.0.0", - "standard": "^8.0.0", - "standard-version": "^3.0.0" + "chai": "^4.2.0", + "chalk": "^2.4.2", + "coveralls": "^3.0.3", + "mocha": "^6.0.2", + "nyc": "^13.3.0", + "standard": "^12.0.1", + "standard-version": "^5.0.2" }, "files": [ "index.js" ], "engine": { - "node": ">=4" + "node": ">=6" } }