Skip to content

Commit

Permalink
fix: Update wrap-ansi to fix compatibility with latest versions of ch…
Browse files Browse the repository at this point in the history
…alk. (#60)

BREAKING CHANGE: Drop support for node < 6.
  • Loading branch information
coreyfarrell authored and bcoe committed Apr 4, 2019
1 parent d7494f3 commit 7bf79ae
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
language: node_js
node_js:
- "4"
- "6"
- "8"
- "10"
after_script: npm run coverage
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,23 +45,23 @@
"author": "Ben Coe <ben@npmjs.com>",
"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"
}
}

0 comments on commit 7bf79ae

Please sign in to comment.