easy-mysql-proxy
Version:
Query execution made easier for node-mysql
57 lines (56 loc) • 1.38 kB
JSON
{
"name": "easy-mysql-proxy",
"version": "0.0.0",
"scripts": {
"pre-push-dependencies": "npm install",
"esdoc": "esdoc",
"eslint": "eslint 'src/**/*.js'",
"eslint-fix": "eslint 'src/**/*.js' --fix",
"git-uncommited-changes": "git diff --quiet --cached",
"git-unstaged-changes": "git diff --quiet",
"git-branch": "bash git-hooks/branch.sh",
"lint-staged": "lint-staged",
"test": "NODE_ENV='TEST' ./node_modules/.bin/mocha --compilers js:babel-core/register --reporter spec ./tests --recursive --timeout 10000"
},
"dependencies": {
"mysql": "^2.13.0"
},
"devDependencies": {
"babel-preset-node6": "^11.0.0",
"babili": "0.0.11",
"chai": "^3.5.0",
"esdoc": "^0.5.2",
"eslint": "^3.16.1",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-concat": "^2.6.1",
"gulp-sourcemaps": "^2.4.1",
"lint-staged": "^3.3.1",
"mocha": "^3.2.0",
"pre-commit": "^1.2.2",
"pre-push": "^0.1.1",
"pump": "latest",
"source-map-support": "latest"
},
"pre-push": [
"eslint",
"git-unstaged-changes",
"git-uncommited-changes",
"git-branch",
"test"
],
"pre-commit": [
"git-branch",
"lint-staged"
],
"lint-staged": {
"src/**/*.js": [
"eslint --fix",
"git add"
],
"tests/**/*.js": [
"eslint --fix",
"git add"
]
}
}