Skip to content

Commit

Permalink
chore: update dependencies (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
warerebel authored May 19, 2020
1 parent 7a700ed commit fa64749
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@ language: node_js
sudo: false

node_js:
- '4'
- '5'
- lts/*

after_success:
- npm run coverage
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@
"expression"
],
"dependencies": {
"acorn": "~4.0.2",
"object-assign": "^4.0.1"
"acorn": "^7.1.1",
"object-assign": "^4.1.1"
},
"devDependencies": {
"istanbul": "*",
"testit": "^2.0.2"
"nyc": "^15.0.1",
"testit": "^3.1.0"
},
"scripts": {
"test": "node test && npm run coverage",
"coverage": "istanbul cover test.js"
"coverage": "nyc node test.js"
},
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion test.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,5 @@ testit('fails', function () {
error('\npublic', 2, 0, {strict: true});
error('abc // my comment', 1, 4);
error('() => a', 1, 1, {ecmaVersion: 5});
error('function (a = "default") {"use strict";}', 1, 26);
error('function (a = "default") {"use strict";}', 1, 0);
});

0 comments on commit fa64749

Please sign in to comment.