UNPKG

koa-bouncer

Version:

A parameter validation library for Koa routes

61 lines (60 loc) 1.65 kB
{ "name": "koa-bouncer", "version": "6.0.4", "description": "A parameter validation library for Koa routes", "main": "src/index.js", "scripts": { "test": "NODE_ENV=test mocha --reporter spec --compilers js:babel-core/register", "patch": "npm version patch && npm publish", "minor": "npm version minor && npm publish", "major": "npm version major && npm publish", "postpublish": "git push origin master --follow-tags", "deploy": "git pull --rebase origin master && git push origin master", "pretty-fix": "./node_modules/.bin/prettier --write \"{src,test}/**/*.js\"" }, "repository": { "type": "git", "url": "https://github.com/danneu/koa-bouncer" }, "keywords": [ "validation", "koa" ], "author": "Dan Neumann <danrodneu@gmail.com> (https://github.com/danneu)", "license": "MIT", "bugs": { "url": "https://github.com/danneu/koa-bouncer/issues" }, "homepage": "https://github.com/danneu/koa-bouncer", "dependencies": { "better-assert": "^1.0.2", "debug": "^3.1.0", "lodash": "^4.0.0", "validator": "^9.0.0" }, "devDependencies": { "babel-core": "^6.9.0", "babel-polyfill": "^6.9.0", "babel-preset-es2015": "^6.9.0", "babel-preset-stage-0": "^6.5.0", "babel-register": "^6.9.0", "chai": "^3.4.0", "eslint": "^1.7.3", "eslint-config-volox": "^1.0.2", "koa": "^2.0.0", "mocha": "^2.3.3", "prettier": "^1.7.4", "supertest": "^1.1.0" }, "babel": { "presets": [ "es2015", "stage-0" ] }, "prettier": { "semi": false, "singleQuote": true, "trailingComma": "es5" } }