fkanout/koa-validator

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "koa-router-joi-validation",
  "version": "1.2.0",
  "description": "Koa input/output validation middleware for Koa router",
  "main": "lib/",
  "scripts": {
    "dev": "nodemon --exec babel-node src/",
    "build": "babel src --out-dir lib --source-maps",
    "start": "npm run build && node lib/",
    "test": "npm run build && nyc mocha test/ --timeout 10000"
  },
  "keywords": [
    "koa",
    "router",
    "validator",
    "middleware",
    "validation",
    "input",
    "output",
    "joi"
  ],
  "author": "Faisal KANOUT",
  "license": "MIT",
  "dependencies": {
    "@babel/runtime": "^7.7.7",
    "@hapi/joi": "^17.0.0"
  },
  "repository": {
    "type": "git",
    "url": "git://github.com/fkanout/koa-router-joi-validation.git"
  },
  "bugs": {
    "url": "https://github.com/fkanout/koa-router-joi-validation/issues"
  },
  "homepage": "https://github.com/koajs/koa-router-joi-validation",
  "devDependencies": {
    "@babel/cli": "^7.7.7",
    "@babel/core": "^7.7.7",
    "@babel/node": "^7.7.7",
    "@babel/plugin-transform-runtime": "^7.7.6",
    "@babel/preset-env": "^7.7.7",
    "@koa/router": "^8.0.5",
    "axios": "^0.19.0",
    "got": "^10.2.1",
    "koa": "^2.11.0",
    "koa-bodyparser": "^4.2.1",
    "mocha": "^7.0.0",
    "nodemon": "^2.0.2",
    "nyc": "^15.0.0"
  },
  "babel": {
    "presets": [
      [
        "@babel/preset-env",
        {
          "targets": {
            "node": "8"
          }
        }
      ]
    ],
    "plugins": [
      "@babel/plugin-transform-runtime"
    ]
  },
  "engines": {
    "node": ">=8.x"
  }
}