-
Notifications
You must be signed in to change notification settings - Fork 85
/
Copy pathpackage.json
59 lines (59 loc) · 1.44 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
55
56
57
58
59
{
"name": "serverless-mysql",
"version": "2.0.0",
"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 .",
"prepublishOnly": "npm run lint && npm run test"
},
"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 <[email protected]>",
"maintainers": [
{
"name": "Naor Peled",
"email": "[email protected]",
"url": "https://naor.dev"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/jeremydaly/serverless-mysql/issues"
},
"homepage": "https://github.com/jeremydaly/serverless-mysql#readme",
"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": "^7.0.0",
"sinon": "^6.3.5"
},
"files": [
"LICENSE",
"README.md",
"index.js",
"index.d.ts"
],
"dependencies": {
"mysql2": "^3.12.0"
}
}