-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.03 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
{
"name": "@webeetle/fastify-mysql2",
"version": "1.0.2",
"description": "Fastify Mysql connection plugin",
"main": "index.js",
"scripts": {
"test": "standard && tap test/*.test.js",
"mariadb": "docker run -d -p 3306:3306 -e MYSQL_ALLOW_EMPTY_PASSWORD=yes --rm mariadb:10.1",
"mysql": "npm run mysql:8.0",
"mysql:5.7": "docker run -d -p 3306:3306 -e MYSQL_ALLOW_EMPTY_PASSWORD=yes --rm mysql:5.7",
"mysql:5.5": "docker run -d -p 3306:3306 -e MYSQL_ALLOW_EMPTY_PASSWORD=yes --rm mysql:5.5",
"mysql:8.0": "docker run -d -p 3306:3306 -e MYSQL_ALLOW_EMPTY_PASSWORD=yes --rm mysql:8.0"
},
"keywords": [
"fastify",
"mysql",
"database",
"connection",
"sql"
],
"license": "MIT",
"dependencies": {
"fastify-plugin": "^1.5.0",
"mysql2": "^2.0.0"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"devDependencies": {
"fastify": "^2.3.0",
"standard": "^14.0.0",
"tap": "^12.7.0"
},
"directories": {
"test": "test"
},
"author": "Webeetle"
}