forked from Eomm/fastify-sqlite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.19 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
{
"name": "fastify-sqlite",
"version": "1.1.0",
"description": "Fastify plugin to connect to a SQLite database",
"main": "index.js",
"types": "types/index.d.ts",
"scripts": {
"lint": "standard",
"lint:fix": "standard --fix",
"test": "npm run test:unit && npm run test:typescript",
"test:typescript": "tsd",
"test:unit": "tap test/**/*.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Eomm/fastify-sqlite.git"
},
"keywords": [
"fastify",
"fastify-plugin",
"database",
"in-memory",
"sql",
"sqlite",
"sqlite3"
],
"author": "Manuel Spigolon <[email protected]> (https://github.com/Eomm)",
"funding": "https://github.com/Eomm/fastify-sqlite?sponsor=1",
"license": "MIT",
"bugs": {
"url": "https://github.com/Eomm/fastify-sqlite/issues"
},
"homepage": "https://github.com/Eomm/fastify-sqlite#readme",
"devDependencies": {
"@fastify/pre-commit": "^2.0.2",
"@types/node": "^18.0.0",
"fastify": "^4.5.3",
"standard": "^17.0.0",
"tap": "^16.3.0",
"tsd": "^0.25.0"
},
"dependencies": {
"fastify-plugin": "^4.2.1",
"sqlite": "^4.1.2",
"sqlite3": "^5.0.11"
}
}