-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
39 lines (39 loc) · 993 Bytes
/
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
{
"name": "hapi-mysql2",
"version": "2.7.1",
"description": "A simple node-mysql2 plugin for hapijs that handles multiple connections, inspired by https://github.com/Marsup/hapi-mongodb",
"main": "lib/index.js",
"directories": {
"lib": "lib"
},
"dependencies": {
"joi": "^17.7.0",
"mysql2": "^2.3.3"
},
"devDependencies": {
"@hapi/code": "^6.0.0",
"@hapi/hapi": "^21.1.0",
"@hapi/lab": "^25.1.0",
"standard": "^17.0.0"
},
"scripts": {
"test": "lab -M 5000 -l -t 100 lib/index.test.js",
"lint": "standard 'lib/**/*.js'",
"lint:fix": "standard 'lib/**/*.js' --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/midnightcodr/hapi-mysql2.git"
},
"keywords": [
"hapijs",
"mysql",
"mysql2"
],
"author": "Rico Chen",
"license": "ISC",
"bugs": {
"url": "https://github.com/midnightcodr/hapi-mysql2/issues"
},
"homepage": "https://github.com/midnightcodr/hapi-mysql2#readme"
}