-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(ci): drop support for node 4, add support for node 10(#55)
BREAKING CHANGE: This library will no longer be tested Node,js 4 and as such will not be guaranteed to work on this version of Node.js. This library supports LTS versions of Node.js as they are specified here: https://github.com/nodejs/Release#release-schedule
- Loading branch information
1 parent
7677dc5
commit 8e0963f
Showing
2 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
"description": "nodejs sdk for the smartcar platform", | ||
"main": "index.js", | ||
"author": "Smartcar <[email protected]> (https://smartcar.com)", | ||
"license" : "MIT", | ||
"license": "MIT", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/smartcar/node-sdk.git" | ||
|
@@ -22,7 +22,7 @@ | |
"index.js" | ||
], | ||
"engines": { | ||
"node": ">=4.0.0" | ||
"node": ">=6.0.0" | ||
}, | ||
"scripts": { | ||
"test": "ava", | ||
|