bodymen
Version:
Body parser middleware for MongoDB, Express and Nodejs
79 lines (78 loc) • 2.29 kB
JSON
{
"name": "bodymen",
"version": "1.1.1",
"description": "Body parser middleware for MongoDB, Express and Nodejs",
"main": "dist/index.js",
"files": [
"bin/",
"dist/"
],
"scripts": {
"clean": "rimraf dist",
"lint": "eslint src test",
"check": "npm run lint -s && dependency-check package.json --entry src",
"watch": "watch 'npm run build' src test",
"test": "babel-node test/index.js | tspec",
"prebuild": "npm run check -s && npm run clean -s",
"build": "babel --optional runtime src -d dist",
"postbuild": "npm run test -s",
"coverage": "nyc --reporter=lcov --reporter=text npm run test",
"coveralls": "npm run coverage -s && coveralls < coverage/lcov.info",
"postcoveralls": "rimraf ./coverage",
"prepublish": "npm run build -s",
"deploy": "git pull --rebase origin master && git push origin master",
"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",
"toc": "doctoc --github --title \"# Changelog\" CHANGELOG.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/diegohaz/bodymen.git"
},
"keywords": [
"body",
"request",
"mongo",
"mongodb",
"mongoose",
"express",
"node",
"nodejs",
"query",
"middleware",
"param"
],
"author": "Diego Haz <hazdiego@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/diegohaz/bodymen/issues"
},
"homepage": "https://github.com/diegohaz/bodymen#readme",
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-eslint": "^7.1.1",
"babel-preset-es2015": "^6.14.0",
"body-parser": "^1.15.2",
"coveralls": "^2.11.12",
"dependency-check": "^2.6.0",
"doctoc": "^1.2.0",
"eslint": "^3.4.0",
"eslint-config-standard": "^6.0.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.0",
"express": "^4.14.0",
"nyc": "^11.0.2",
"rimraf": "^2.5.4",
"supertest": "^2.0.0",
"tap-spec": "^4.1.1",
"tape": "^4.6.0",
"watch": "^1.0.1"
},
"dependencies": {
"lodash": "^4.17.10",
"rich-param": "^1.0.5"
}
}