serverless-mysql2
Version:
A module for managing MySQL2 connections at serverless scale.
54 lines (53 loc) • 1.39 kB
JSON
{
"name": "serverless-mysql2",
"version": "1.5.6",
"description": "A module for managing MySQL2 connections at serverless scale.",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "mocha --check-leaks --recursive",
"test-cov": "nyc --reporter=html mocha --check-leaks --recursive",
"test-ci": "nyc yarn test && nyc report --reporter=text-lcov | ./node_modules/coveralls/bin/coveralls.js",
"lint": "eslint .",
"prepublishOnly": "yarn run lint && yarn run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bherila/serverless-mysql2.git"
},
"keywords": [
"serverless",
"mysql",
"mysql2",
"max_connections",
"scalability",
"rds",
"aurora serverless",
"aurora"
],
"author": "Ben Herila <ben@herila.net>, Jeremy Daly <jeremy@jeremydaly.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bherila/serverless-mysql2/issues"
},
"homepage": "https://github.com/bherila/serverless-mysql2#readme",
"dependencies": {
"mysql2": "^3.12.0"
},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.11",
"eslint": "^5.16.0",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^14.1.1",
"rewire": "^4.0.1",
"sinon": "^6.3.5"
},
"files": [
"LICENSE",
"README.md",
"index.js",
"index.d.ts"
]
}