feathers-snake-case-hook
Version:
A service hook to convert params.query into snake_case
75 lines (74 loc) • 2.01 kB
JSON
{
"name": "feathers-snake-case-hook",
"description": "A service hook to convert params.query into snake_case",
"version": "0.1.0",
"homepage": "https://github.com/mcchrish/feathers-snake-case-hook",
"keywords": [
"feathers",
"feathers-plugin"
],
"licenses": [
{
"type": "MIT",
"url": "https://github.com/mcchrish/feathers-snake-case-hook/blob/master/LICENSE"
}
],
"repository": {
"type": "git",
"url": "git://github.com/mcchrish/feathers-snake-case-hook.git"
},
"author": {
"name": "Michael Chris Lopez",
"email": "mcchrish@gmail.com"
},
"contributors": [],
"bugs": {
"url": "https://github.com/mcchrish/feathers-snake-case-hook/issues"
},
"engines": {
"node": ">= 0.12.0"
},
"main": "lib/",
"scripts": {
"prepublish": "npm run compile",
"publish": "git push origin && git push origin --tags",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"compile": "rm -rf lib/ && babel -d lib/ src/",
"watch": "babel --watch -d lib/ src/",
"lint": "standard src/**/*.js test/**/*.js --config",
"mocha": "mocha test/ --compilers js:babel-core/register --timeout 5000",
"test": "npm run compile && npm run lint && npm run mocha",
"example": "babel-node example/app"
},
"directories": {
"lib": "lib"
},
"dependencies": {
"lodash": "^4.14.0"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.11.4",
"babel-eslint": "^6.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"chai": "^3.5.0",
"mocha": "^2.5.3",
"standard": "beta"
},
"babel": {
"plugins": [
"transform-object-assign",
"add-module-exports"
],
"presets": [
"es2015"
]
},
"standard": {
"parser": "babel-eslint"
}
}