Skip to content
This repository was archived by the owner on Nov 8, 2024. It is now read-only.

Commit ab8fa38

Browse files
authored
Merge pull request #86 from apiaryio/honzajavorek/drop-support-legacy-node-versions
Drop support for Node 0.10 and 0.12
2 parents 20669aa + e063cb1 commit ab8fa38

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.travis.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
sudo: false
22
language: "node_js"
33
node_js:
4-
- "0.10"
5-
- "0.12"
64
- "4"
75
- "6"
86
env:
@@ -15,8 +13,6 @@ cache:
1513
before_install:
1614
- "npm -g install npm@latest"
1715
- "curl -Lo travis_after_all.py https://raw.githubusercontent.com/dmakhno/travis_after_all/master/travis_after_all.py"
18-
before_script: # https://github.com/cucumber/cucumber-js/issues/602
19-
- "if [[ $TRAVIS_NODE_VERSION = '0.10' ]]; then npm install [email protected]; fi"
2016
after_success: # travis_after_all.py is needed due to travis-ci/travis-ci#1548 & travis-ci/travis-ci#929
2117
- "npm run coveralls"
2218
- "python travis_after_all.py"

package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
"version": "0.0.0-semantically-released",
44
"description": "Validator of HTTP transactions (JavaScript implementation)",
55
"main": "lib/gavel.js",
6+
"engines": {
7+
"node": ">= 4"
8+
},
69
"bin": {
710
"gavel": "bin/gavel"
811
},

0 commit comments

Comments
 (0)