{
  "name": "nodejs-mysql",
  "version": "0.1.3",
  "description": "The wrapper of Node.js MySQL driver with Promise enabled.",
  "main": "index.js",
  "scripts": {
    "compile": "babel --presets es2015,stage-0 -d lib/ src/",
    "prepublish": "npm run compile",
    "test": "npm run test-unit",
    "test-unit": "cross-env NODE_ENV=test mocha ./test/*.spec.js",
    "cover": "node ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha",
    "coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls"
  },
  "keywords": [
    "mysql",
    "promise"
  ],
  "author": "Alsey (zamber@neusoft.com)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/alsey/nodejs-mysql/issues"
  },
  "homepage": "https://github.com/alsey/nodejs-mysql#readme",
  "dependencies": {
    "bluebird": "^3.4.6",
    "mysql": "^2.11.1"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/alsey/nodejs-mysql.git"
  },
  "devDependencies": {
    "babel-cli": "^6.18.0",
    "babel-core": "^6.18.2",
    "babel-preset-es2015": "^6.18.0",
    "babel-preset-stage-0": "^6.16.0",
    "chai": "^3.5.0",
    "coveralls": "^2.11.15",
    "cross-env": "^3.1.3",
    "eslint": "^3.10.2",
    "gulp": "^3.9.1",
    "gulp-babel": "^6.1.2",
    "gulp-mocha": "^3.0.1",
    "istanbul": "^0.4.5",
    "lodash": "^4.17.2",
    "mocha": "^3.1.2",
    "mocha-lcov-reporter": "^1.2.0",
    "sinon": "^1.17.6",
    "sinon-chai": "^2.8.0"
  }
}
