hapi-sequelize-crud/package.json

51 lines
1.4 KiB
JSON
Raw Normal View History

{
"name": "hapi-sequelize-crud",
2016-09-05 19:30:15 +00:00
"version": "2.5.4",
"description": "Hapi plugin that automatically generates RESTful API for CRUD",
"main": "build/index.js",
"config": {
"ghooks": {
"pre-commit": "npm run lint && npm run build"
}
},
"scripts": {
2016-09-06 00:10:58 +00:00
"lint": "eslint src",
"test": "ava --require babel-register --source='*.test.js'",
"tdd": "ava --require babel-register --source='*.test.js' --watch",
"build": "scripty",
"watch": "scripty"
},
"repository": {
"git": "https://github.com/mdibaiee/hapi-sequelize-crud"
},
"files": [
"build"
],
"author": "Mahdi Dibaiee <mdibaiee@aol.com> (http://dibaiee.ir/)",
"license": "MIT",
"devDependencies": {
2016-09-06 00:10:58 +00:00
"ava": "^0.16.0",
"babel-cli": "^6.10.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-closure-elimination": "^1.0.6",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-es2015-modules-commonjs": "^6.10.3",
"babel-preset-stage-1": "^6.5.0",
"eslint": "^3.4.0",
2016-07-09 05:11:23 +00:00
"eslint-config-pichak": "1.1.0",
2016-09-06 00:10:58 +00:00
"eslint-plugin-ava": "^3.0.0",
"ghooks": "1.0.3",
2016-09-06 00:10:58 +00:00
"scripty": "^1.6.0",
"sinon": "^1.17.5",
"sinon-bluebird": "^3.0.2"
},
"dependencies": {
2016-06-30 04:27:44 +00:00
"boom": "^3.2.2",
"joi": "7.2.1",
"lodash": "4.0.0"
},
"optionalDependencies": {
"babel-polyfill": "^6.13.0"
}
}