Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop support for Node.js < 4 #11

Merged
merged 4 commits into from Mar 6, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 4 additions & 2 deletions .travis.yml
@@ -1,7 +1,9 @@
language: node_js
node_js:
- 0.8
- 0.10
- 4
- 6
- 8
- 'stable'
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ha! This is good. We could be using it also with the Dredd repo.

notifications:
email:
recipients:
Expand Down
9 changes: 6 additions & 3 deletions package.json
Expand Up @@ -3,6 +3,9 @@
"version": "0.0.9",
"description": "Parse curl --trace option output to raw HTTP message",
"main": "lib/parser.js",
"engines": {
"node": ">= 4"
},
"scripts": {
"test": "scripts/test",
"prepublish": "scripts/prepublish"
Expand All @@ -16,9 +19,9 @@
"http-string-parser": "0.0.6"
},
"devDependencies": {
"coffee-script": "1.6.3",
"mocha": "1.11.0",
"chai": "1.7.1"
"chai": "4.1.2",
"coffeescript": "1.12.7",
"mocha": "5.0.2"
},
"keywords": [
"curl",
Expand Down
2 changes: 1 addition & 1 deletion scripts/bdd
@@ -1,2 +1,2 @@
#!/bin/sh
./node_modules/mocha/bin/mocha -w --reporter spec --compilers 'coffee:coffee-script' ./test/**/*-test.coffee
./node_modules/mocha/bin/mocha -w --reporter spec --compilers=coffee:coffeescript/register ./test/**/*-test.coffee
2 changes: 1 addition & 1 deletion scripts/test
@@ -1,3 +1,3 @@
#!/bin/sh
./scripts/build
./node_modules/mocha/bin/mocha --reporter spec --compilers 'coffee:coffee-script' ./test/**/*-test.coffee
./node_modules/mocha/bin/mocha --reporter spec --compilers=coffee:coffeescript/register ./test/**/*-test.coffee