2016-01-18 14:38:43 +00:00
|
|
|
{
|
|
|
|
"name": "hapi-sequelize-crud",
|
2016-09-06 18:30:22 +00:00
|
|
|
"version": "2.6.0",
|
2016-01-18 14:38:43 +00:00
|
|
|
"description": "Hapi plugin that automatically generates RESTful API for CRUD",
|
|
|
|
"main": "build/index.js",
|
2016-01-19 06:38:27 +00:00
|
|
|
"config": {
|
|
|
|
"ghooks": {
|
2016-07-05 21:47:01 +00:00
|
|
|
"pre-commit": "npm run lint && npm run build"
|
2016-01-19 06:38:27 +00:00
|
|
|
}
|
|
|
|
},
|
2016-01-18 14:38:43 +00:00
|
|
|
"scripts": {
|
2016-09-06 00:10:58 +00:00
|
|
|
"lint": "eslint src",
|
2016-09-06 00:21:30 +00:00
|
|
|
"test": "ava --require babel-register --source='*.test.js' --tap=${CI-false} | $(if [ -z ${CI:-} ]; then echo 'tail'; else tap-xunit > $CIRCLE_TEST_REPORTS/ava/ava.xml; fi;)",
|
2016-09-06 00:10:58 +00:00
|
|
|
"tdd": "ava --require babel-register --source='*.test.js' --watch",
|
2016-07-05 21:47:01 +00:00
|
|
|
"build": "scripty",
|
|
|
|
"watch": "scripty"
|
2016-01-18 14:38:43 +00:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"git": "https://github.com/mdibaiee/hapi-sequelize-crud"
|
|
|
|
},
|
2016-01-19 07:53:01 +00:00
|
|
|
"files": [
|
|
|
|
"build"
|
|
|
|
],
|
2016-01-18 14:38:43 +00:00
|
|
|
"author": "Mahdi Dibaiee <mdibaiee@aol.com> (http://dibaiee.ir/)",
|
|
|
|
"license": "MIT",
|
|
|
|
"devDependencies": {
|
2016-09-06 00:10:58 +00:00
|
|
|
"ava": "^0.16.0",
|
2016-09-05 00:23:30 +00:00
|
|
|
"babel-cli": "^6.14.0",
|
2016-07-05 21:47:01 +00:00
|
|
|
"babel-plugin-add-module-exports": "^0.2.1",
|
|
|
|
"babel-plugin-closure-elimination": "^1.0.6",
|
|
|
|
"babel-plugin-transform-decorators-legacy": "^1.3.4",
|
2016-09-05 00:23:30 +00:00
|
|
|
"babel-plugin-transform-es2015-modules-commonjs": "^6.14.0",
|
|
|
|
"babel-preset-stage-1": "^6.13.0",
|
2016-09-05 22:43:48 +00:00
|
|
|
"eslint": "^3.4.0",
|
2016-09-05 00:23:30 +00:00
|
|
|
"eslint-config-pichak": "^1.1.2",
|
2016-09-06 00:10:58 +00:00
|
|
|
"eslint-plugin-ava": "^3.0.0",
|
2016-09-05 00:23:30 +00:00
|
|
|
"ghooks": "^1.3.2",
|
2016-09-06 00:10:58 +00:00
|
|
|
"scripty": "^1.6.0",
|
|
|
|
"sinon": "^1.17.5",
|
2016-09-06 00:21:30 +00:00
|
|
|
"sinon-bluebird": "^3.0.2",
|
|
|
|
"tap-xunit": "^1.4.0"
|
2016-01-18 14:38:43 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2016-09-05 00:22:21 +00:00
|
|
|
"boom": "^4.0.0",
|
2016-09-05 00:22:47 +00:00
|
|
|
"joi": "^9.0.4",
|
2016-09-05 00:23:30 +00:00
|
|
|
"lodash": "^4.15.0"
|
2016-08-28 16:58:08 +00:00
|
|
|
},
|
|
|
|
"optionalDependencies": {
|
|
|
|
"babel-polyfill": "^6.13.0"
|
2016-01-18 14:38:43 +00:00
|
|
|
}
|
|
|
|
}
|