-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 952 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
40
41
42
43
{
"name": "sequelize-fastify",
"version": "2.0.0",
"description": "a Sequelize plugin for Fastify.",
"main": "src/index.js",
"scripts": {
"test": "jest --verbose -i test.js -t",
"lint": "standard --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hsynlms/sequelize-fastify.git"
},
"keywords": [
"sequelize",
"fastify",
"fastify-plugin",
"sqlite",
"mysql",
"postgres",
"mssql"
],
"author": "Huseyin ELMAS",
"license": "MIT",
"bugs": {
"url": "https://github.com/hsynlms/sequelize-fastify/issues"
},
"homepage": "https://github.com/hsynlms/sequelize-fastify#readme",
"engines": {
"node": "^14.17.0 || >=16.0.0"
},
"devDependencies": {
"chalk": "4.1.2",
"fastify": "4.0.0",
"jest": "28.1.1",
"mysql2": "2.3.3",
"standard": "17.0.0"
},
"dependencies": {
"fastify-plugin": "^3.0.1",
"sequelize": "^6.20.1"
}
}