forked from jeremydaly/serverless-mysql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.33 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "serverless-mysql",
"version": "1.5.1",
"description": "A module for managing MySQL 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 npm test && nyc report --reporter=text-lcov | ./node_modules/coveralls/bin/coveralls.js",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/jeremydaly/serverless-mysql.git"
},
"keywords": [
"serverless",
"mysql",
"max_connections",
"scalability",
"rds",
"aurora serverless",
"aurora"
],
"author": "Jeremy Daly <jeremy@jeremydaly.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jeremydaly/serverless-mysql/issues"
},
"homepage": "https://github.com/jeremydaly/serverless-mysql#readme",
"dependencies": {
"mysql": "^2.17.1"
},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.3",
"eslint": "^5.16.0",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^14.0.0",
"rewire": "^4.0.1",
"sinon": "^6.3.5"
},
"optionalDependencies": {
"@types/mysql": "^2.15.6"
},
"files": [
"LICENSE",
"README.md",
"index.js",
"index.d.ts"
]
}