Skip to content

Commit

Permalink
chore: bump deps (closes #7, closes #33, fixes ZijianHe/koa-router#512)
Browse files Browse the repository at this point in the history
  • Loading branch information
niftylettuce committed Dec 10, 2019
1 parent 6e34988 commit c6fc293
Showing 1 changed file with 38 additions and 30 deletions.
68 changes: 38 additions & 30 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,44 +1,52 @@
{
"name": "@koa/router",
"description": "Router middleware for koa. Provides RESTful resource routing.",
"repository": {
"type": "git",
"url": "https://github.com/koajs/koa-router.git"
},
"main": "lib/router.js",
"files": [
"lib"
],
"author": "Alex Mingoia <talk@alexmingoia.com>",
"version": "8.0.3",
"keywords": [
"koa",
"middleware",
"router",
"route"
],
"author": "Alex Mingoia <talk@alexmingoia.com>",
"bugs": {
"url": "https://github.com/koajs/router/issues",
"email": "niftylettuce@gmail.com"
},
"dependencies": {
"debug": "^3.1.0",
"http-errors": "^1.3.1",
"koa-compose": "^3.0.0",
"methods": "^1.0.1",
"path-to-regexp": "^1.1.1",
"urijs": "^1.19.0"
"debug": "^4.1.1",
"http-errors": "^1.7.3",
"koa-compose": "^4.1.0",
"methods": "^1.1.2",
"path-to-regexp": "1.x",
"urijs": "^1.19.2"
},
"devDependencies": {
"expect.js": "^0.3.1",
"jsdoc-to-markdown": "^5.0.1",
"koa": "2.2.0",
"mocha": "^6.2.0",
"should": "^6.0.3",
"jsdoc-to-markdown": "^5.0.3",
"koa": "^2.11.0",
"mocha": "^6.2.2",
"should": "^13.2.3",
"supertest": "^4.0.2"
},
"scripts": {
"test": "NODE_ENV=test mocha test/**/*.js",
"docs": "NODE_ENV=test jsdoc2md -t ./lib/API_tpl.hbs --src ./lib/*.js >| API.md"
},
"engines": {
"node": ">= 8.0.0"
},
"license": "MIT"
"files": [
"lib"
],
"peerDependencies": {
"koa": ">=2.2"
},
"homepage": "https://github.com/koajs/router",
"keywords": [
"koa",
"middleware",
"route",
"router"
],
"license": "MIT",
"main": "lib/router.js",
"repository": {
"type": "git",
"url": "https://github.com/koajs/koa-router.git"
},
"scripts": {
"docs": "NODE_ENV=test jsdoc2md -t ./lib/API_tpl.hbs --src ./lib/*.js >| API.md",
"test": "NODE_ENV=test mocha test/**/*.js"
}
}

0 comments on commit c6fc293

Please sign in to comment.