53 lines
1.6 KiB
JSON
53 lines
1.6 KiB
JSON
{
|
|
"name": "hapi-sequelize-crud",
|
|
"version": "2.6.2",
|
|
"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": {
|
|
"lint": "eslint src",
|
|
"test": "ava --require babel-register --source='src/**/*.js' --source='!build/**/*' --tap=${CI-false} src/**/*.test.js | $(if [ -z ${CI:-} ]; then echo 'tail'; else tap-xunit > $CIRCLE_TEST_REPORTS/ava/ava.xml; fi;)",
|
|
"tdd": "ava --require babel-register --source='src/**/*.js' --source='!build/**/*' --watch src/**/*.test.js",
|
|
"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": {
|
|
"ava": "^0.16.0",
|
|
"babel-cli": "^6.14.0",
|
|
"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.14.0",
|
|
"babel-preset-stage-1": "^6.13.0",
|
|
"babel-register": "^6.14.0",
|
|
"eslint": "^3.4.0",
|
|
"eslint-config-pichak": "^1.1.2",
|
|
"eslint-plugin-ava": "^3.0.0",
|
|
"ghooks": "^1.3.2",
|
|
"scripty": "^1.6.0",
|
|
"sinon": "^1.17.5",
|
|
"sinon-bluebird": "^3.0.2",
|
|
"tap-xunit": "^1.4.0"
|
|
},
|
|
"dependencies": {
|
|
"boom": "^4.0.0",
|
|
"joi": "^9.0.4",
|
|
"lodash": "^4.15.0"
|
|
},
|
|
"optionalDependencies": {
|
|
"babel-polyfill": "^6.13.0"
|
|
}
|
|
}
|