Skip to content

Commit 7bf79ae

Browse files
coreyfarrellBenjamin E. Coe
authored andcommitted
fix: Update wrap-ansi to fix compatibility with latest versions of chalk. (#60)
BREAKING CHANGE: Drop support for node < 6.
1 parent d7494f3 commit 7bf79ae

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
language: node_js
22
node_js:
3-
- "4"
43
- "6"
54
- "8"
5+
- "10"
66
after_script: npm run coverage

package.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -45,23 +45,23 @@
4545
"author": "Ben Coe <ben@npmjs.com>",
4646
"license": "ISC",
4747
"dependencies": {
48-
"string-width": "^2.1.1",
49-
"strip-ansi": "^4.0.0",
50-
"wrap-ansi": "^2.0.0"
48+
"string-width": "^3.1.0",
49+
"strip-ansi": "^5.2.0",
50+
"wrap-ansi": "^5.1.0"
5151
},
5252
"devDependencies": {
53-
"chai": "^3.5.0",
54-
"chalk": "^1.1.2",
55-
"coveralls": "^2.11.8",
56-
"mocha": "^3.0.0",
57-
"nyc": "^10.0.0",
58-
"standard": "^8.0.0",
59-
"standard-version": "^3.0.0"
53+
"chai": "^4.2.0",
54+
"chalk": "^2.4.2",
55+
"coveralls": "^3.0.3",
56+
"mocha": "^6.0.2",
57+
"nyc": "^13.3.0",
58+
"standard": "^12.0.1",
59+
"standard-version": "^5.0.2"
6060
},
6161
"files": [
6262
"index.js"
6363
],
6464
"engine": {
65-
"node": ">=4"
65+
"node": ">=6"
6666
}
6767
}

0 commit comments

Comments
 (0)