Skip to content

Commit b105376

Browse files
realitykingbcoe
authored andcommittedOct 16, 2017
chore: drop support for node < 4 (#53)
BREAKING CHANGE: officially drop support for Node < 4
1 parent 0afe9c9 commit b105376

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed
 

‎.travis.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
language: node_js
22
node_js:
3-
- "0.10"
4-
- "0.12"
53
- "4"
6-
- "5"
4+
- "6"
5+
- "8"
76
after_script: npm run coverage

‎package.json

+7-4
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@
4545
"author": "Ben Coe <ben@npmjs.com>",
4646
"license": "ISC",
4747
"dependencies": {
48-
"string-width": "^1.0.1",
49-
"strip-ansi": "^3.0.1",
48+
"string-width": "^2.1.1",
49+
"strip-ansi": "^4.0.0",
5050
"wrap-ansi": "^2.0.0"
5151
},
5252
"devDependencies": {
@@ -60,5 +60,8 @@
6060
},
6161
"files": [
6262
"index.js"
63-
]
64-
}
63+
],
64+
"engine": {
65+
"node": ">=4"
66+
}
67+
}

0 commit comments

Comments
 (0)
Please sign in to comment.