-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
44 lines (44 loc) · 1.02 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
{
"name": "hapi-plugin-mysql",
"version": "7.2.7",
"description": "Hapi plugin for MySQL",
"main": "lib/index.js",
"private": false,
"scripts": {
"lint": "eslint --fix .",
"test": "lab -m 5000 -a @hapi/code -vL --lint-fix -t 95"
},
"repository": {
"type": "git",
"url": "https://github.com/Salesflare/hapi-plugin-mysql.git"
},
"keywords": [
"hapi",
"mysql",
"plugin"
],
"author": "Adri Van Houdt <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Salesflare/hapi-plugin-mysql/issues"
},
"homepage": "https://github.com/Salesflare/hapi-plugin-mysql",
"dependencies": {
"@hapi/hoek": "^9.2.0",
"mysql": "^2.18.1"
},
"peerDependencies": {
"@hapi/hapi": ">=19.0.0"
},
"engines": {
"node": ">=12.18.0"
},
"devDependencies": {
"@hapi/code": "^8.0.5",
"@hapi/hapi": "^20.2.1",
"@hapi/lab": "^24.5.0",
"eslint": "^7.32.0",
"eslint-config-salesflare": "^5.4.0",
"eslint-plugin-node": "^11.1.0"
}
}