hapi-sequelize-crud/package.json

53 lines
1.6 KiB
JSON
Raw Normal View History

{
"name": "hapi-sequelize-crud",
2016-09-08 20:27:20 +00:00
"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": {
2016-09-06 00:10:58 +00:00
"lint": "eslint src",
2016-09-08 20:21:09 +00:00
"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": {
2016-09-06 00:10:58 +00:00
"ava": "^0.16.0",
2016-10-20 23:47:04 +00:00
"babel-cli": "^6.16.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-closure-elimination": "^1.0.6",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
2016-10-20 23:47:04 +00:00
"babel-plugin-transform-es2015-modules-commonjs": "^6.16.0",
"babel-preset-stage-1": "^6.16.0",
"babel-register": "^6.16.3",
"eslint": "^3.8.1",
"eslint-config-pichak": "^1.1.2",
2016-10-20 23:47:04 +00:00
"eslint-plugin-ava": "^3.1.1",
"ghooks": "^1.3.2",
2016-09-06 00:10:58 +00:00
"scripty": "^1.6.0",
2016-10-20 23:47:04 +00:00
"sinon": "^1.17.6",
"sinon-bluebird": "^3.1.0",
2016-09-06 00:21:30 +00:00
"tap-xunit": "^1.4.0"
},
"dependencies": {
2016-10-20 23:47:04 +00:00
"boom": "^4.2.0",
"joi": "^9.2.0",
"lodash": "^4.16.4"
},
"optionalDependencies": {
"babel-polyfill": "^6.13.0"
}
}