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

Update deps #6

Merged
merged 1 commit into from Jul 2, 2019
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
1 change: 1 addition & 0 deletions .gitignore
@@ -1,3 +1,4 @@
node_modules
coverage
.nyc_output
package-lock.json
5 changes: 1 addition & 4 deletions .travis.yml
@@ -1,6 +1,3 @@
language: node_js
node_js:
- 8

script:
- npm run ci
- 10
19 changes: 9 additions & 10 deletions package.json
Expand Up @@ -6,16 +6,15 @@
"scripts": {
"lint": "eslint --ext '.js' test *.js",
"watch": "mocha --watch 'test/**/*.js' '*.js' --timeout 500",
"test": "npm run lint && NODE_ENV=test istanbul cover -i '*.js' _mocha -- -u exports -R spec --timeout 3000 'test/**/*.test.js'",
"test": "npm run lint && nyc --reporter=text-summary --reporter=lcov mocha --exit 'test/**/*.test.js'",
"mocha-only-detect": "mocha-only-detector-glob **/*.test.js",
"ci": "npm test --coverage && istanbul report cobertura",
"changelog": "git log `git describe --tags --abbrev=0`..HEAD --pretty=format:\" * %s\"",
"release": "npm run ci && release-it -n -i patch",
"release:minor": "npm run ci && release-it -n -i minor",
"release:major": "npm run ci && release-it -n -i major"
},
"engines": {
"node": ">=8.x.x"
"node": ">=10.x.x"
},
"repository": {
"type": "git",
Expand Down Expand Up @@ -43,16 +42,16 @@
}
},
"dependencies": {
"ramda": "^0.25.0"
"ramda": "^0.26.1"
},
"devDependencies": {
"@aptoma/eslint-config": "^7.0.1",
"chai": "^4.1.2",
"eslint": "^4.12.1",
"hapi": "^17.1.1",
"istanbul": "^0.4.5",
"mocha": "^4.0.1",
"mocha-only-detector": "^0.1.0",
"@hapi/hapi": "^18.3.1",
"chai": "^4.2.0",
"eslint": "^6.0.1",
"mocha": "^6.1.4",
"mocha-only-detector": "^1.0.1",
"nyc": "^14.1.1",
"release-it": "^2.4.3"
}
}
4 changes: 2 additions & 2 deletions test/index.test.js
@@ -1,7 +1,7 @@
'use strict';

const Hapi = require('hapi');
const Joi = require('joi');
const Hapi = require('@hapi/hapi');
const Joi = require('@hapi/joi');
const assert = require('chai').assert;
const jsonapi = require('../');
const plugin = jsonapi.plugin;
Expand Down