From 1446901401da517491c14381f58c40a970af102d Mon Sep 17 00:00:00 2001 From: Honza Javorek Date: Tue, 9 Apr 2019 11:09:49 +0200 Subject: [PATCH] chore: drop support for Node 6 BREAKING CHANGE: Node 6 is not supported anymore (end of life April 2019) --- .travis.yml | 11 +---------- package.json | 2 +- 2 files changed, 2 insertions(+), 11 deletions(-) diff --git a/.travis.yml b/.travis.yml index 8f46ac3..707688e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,16 +1,7 @@ language: node_js node_js: - - 6 - 8 - - 'stable' - + - 10 script: - npm run lint - npm run test - -notifications: - email: - recipients: - - adam@apiary.io - on_success: change - on_failure: always diff --git a/package.json b/package.json index c52534e..23352e4 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "description": "Parse curl --trace option output to raw HTTP message", "main": "lib/parser.js", "engines": { - "node": ">= 6" + "node": ">= 8" }, "scripts": { "lint": "eslint src/ test/ bin/",