Skip to content

Commit

Permalink
Merge pull request #11 from realityking/node-4
Browse files Browse the repository at this point in the history
Drop support for Node.js < 4
  • Loading branch information
honzajavorek committed Mar 6, 2018
2 parents 1c7a7d0 + 5b32135 commit 037c11c
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
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'
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

0 comments on commit 037c11c

Please sign in to comment.