From 9fc4e02b72755dfee51c372dfafadd5835d52838 Mon Sep 17 00:00:00 2001 From: Henry Zhu Date: Mon, 1 Aug 2016 15:00:01 -0400 Subject: [PATCH] Drop node < 4 (#358) --- .travis.yml | 15 --------------- package.json | 3 +++ 2 files changed, 3 insertions(+), 15 deletions(-) diff --git a/.travis.yml b/.travis.yml index 28461426..8aac7f25 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,23 +2,8 @@ git: depth: 1 sudo: false language: node_js -before_install: - - sh -c "if [ '$ESLINT_VERSION' = '2' ]; then npm i --save-dev eslint@2; fi" matrix: include: - - node_js: "0.10" - env: ESLINT_VERSION=2 - - node_js: "0.12" - env: ESLINT_VERSION=2 - node_js: "4" - env: ESLINT_VERSION=2 - - node_js: "4" - env: ESLINT_VERSION=3 - - node_js: "5" - env: ESLINT_VERSION=2 - node_js: "5" - env: ESLINT_VERSION=3 - - node_js: "6" - env: ESLINT_VERSION=2 - node_js: "6" - env: ESLINT_VERSION=3 diff --git a/package.json b/package.json index 798b6931..8fbade99 100644 --- a/package.json +++ b/package.json @@ -29,6 +29,9 @@ }, "author": "Sebastian McKenzie ", "license": "MIT", + "engines": { + "node": ">=4" + }, "bugs": { "url": "https://github.com/babel/babel-eslint/issues" },