Skip to content

Commit

Permalink
Use namespaced deps and bump versions (#75)
Browse files Browse the repository at this point in the history
* Update `hapi` and `joi` to use the new namespaced packages (i.e. `@hapi/hapi` and `@hapi/joi`)
* Make all version numbers in the form X.Y.Z so they are consistent and predictable
* Make all selectors consistent
* Minor updates to a few deps
  • Loading branch information
josebolos committed May 22, 2019
1 parent 2d8a9a0 commit 1097945
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion app.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
'use strict';

const async = require('async');
const Hapi = require('hapi');
const Hapi = require('@hapi/hapi');
const MongoClient = require('mongodb').MongoClient;

module.exports = initApp;
Expand Down
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,21 +23,21 @@
"bugs": "https://github.com/pa11y/webservice/issues",
"license": "GPL-3.0",
"dependencies": {
"async": "~2.6",
"chalk": "~2.4",
"cron": "~1.7",
"hapi": "~17.0",
"joi": "~14.3",
"async": "~2.6.2",
"chalk": "~2.4.2",
"cron": "~1.7.1",
"@hapi/hapi": "~17.9.0",
"@hapi/joi": "~15.0.3",
"mongodb": "~2.2.19",
"pa11y": "^5.1.0",
"underscore": "~1.9"
"pa11y": "~5.1.0",
"underscore": "~1.9.1"
},
"devDependencies": {
"eslint": "^5.16.0",
"mocha": "^6",
"mocha": "^6.1.4",
"pa11y-lint-config": "^1.2.1",
"proclaim": "^3",
"request": "^2"
"proclaim": "^3.6.0",
"request": "^2.88.0"
},
"main": "./app.js",
"scripts": {
Expand Down

0 comments on commit 1097945

Please sign in to comment.