hapi-sequelize-crud/package.json

78 lines
1.9 KiB
JSON
Raw Normal View History

{
"name": "hapi-sequelize-crud",
2016-10-26 21:09:42 +00:00
"version": "2.7.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",
"test": "SCRIPTY_SILENT=true scripty",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"tdd": "ava --watch",
"build": "SCRIPTY_SILENT=true scripty",
"watch": "SCRIPTY_SILENT=true 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",
"bluebird": "^3.4.6",
2016-10-27 00:24:59 +00:00
"codecov": "^1.0.1",
2016-10-20 23:47:04 +00:00
"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",
"hapi": "^15.2.0",
"hapi-sequelize": "^3.0.4",
2016-10-27 00:24:59 +00:00
"nyc": "^8.3.2",
"portfinder": "^1.0.9",
2016-09-06 00:10:58 +00:00
"scripty": "^1.6.0",
"sequelize": "^3.24.6",
2016-10-20 23:47:04 +00:00
"sinon": "^1.17.6",
"sinon-bluebird": "^3.1.0",
"sqlite3": "^3.1.7",
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"
},
"nyc": {
"cache": true
},
"ava": {
"source": [
"src/**/*.js",
"!build/**/*"
],
"files": [
"**/*.test.js",
"!build/**/*"
],
"require": [
"babel-register"
]
}
}