Skip to content

Commit

Permalink
Node v12 and bumped dependencies (#832)
Browse files Browse the repository at this point in the history
* Node v12

* Bumped dependencies

* Disable automatic code coverage
  • Loading branch information
delvedor committed Apr 26, 2019
1 parent f73da27 commit 10c6038
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions .ci/test-matrix.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
---
ELASTICSEARCH_VERSION:
- 5.6.16
- 5.6.16

NODE_JS_VERSION:
- 11
- 10
- 8
- 12
- 10
- 8

exclude: ~
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ sudo: required
language: node_js

node_js:
- "11"
- "12"
- "10"
- "8"

Expand Down
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
],
"scripts": {
"test": "npm run lint && npm run test:unit && npm run test:behavior && npm run test:types",
"test:unit": "tap test/unit/*.test.js -J -t 300",
"test:behavior": "tap test/behavior/*.test.js -J -t 300",
"test:integration": "tap test/integration/index.js -T --harmony --no-esm",
"test:unit": "tap test/unit/*.test.js -t 300 --no-coverage",
"test:behavior": "tap test/behavior/*.test.js -t 300 --no-coverage",
"test:integration": "tap test/integration/index.js -T --harmony --no-esm --no-coverage",
"test:types": "tsc --project ./test/types/tsconfig.json",
"test:coverage": "nyc npm run test:unit && nyc report --reporter=text-lcov > coverage.lcov && codecov",
"lint": "standard",
Expand All @@ -36,15 +36,15 @@
"company": "Elasticsearch BV"
},
"devDependencies": {
"@types/node": "^11.13.4",
"@types/node": "^11.13.7",
"codecov": "^3.3.0",
"convert-hrtime": "^3.0.0",
"dedent": "^0.7.0",
"deepmerge": "^3.2.0",
"dezalgo": "^1.0.3",
"js-yaml": "^3.13.1",
"license-checker": "^25.0.1",
"lolex": "^3.1.0",
"lolex": "^4.0.1",
"minimist": "^1.2.0",
"ora": "^3.4.0",
"pretty-hrtime": "^1.0.3",
Expand All @@ -55,8 +55,8 @@
"split2": "^3.1.1",
"standard": "^12.0.1",
"stoppable": "^1.1.0",
"tap": "^12.6.1",
"typescript": "^3.4.3",
"tap": "^13.0.1",
"typescript": "^3.4.5",
"workq": "^2.1.0"
},
"dependencies": {
Expand Down

0 comments on commit 10c6038

Please sign in to comment.