-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 903 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 903 Bytes
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
{
"name": "fastify-session-better-sqlite3-store",
"version": "2.1.3",
"description": "A simple session store for fastify-session using better-sqlite3",
"main": "index.js",
"scripts": {
"lint": "npx standard *.js test/*.js",
"lint-fix": "npx standard --fix *.js test/*.js",
"test": "node test/first.test && node test/second.test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mrdcvlsc/fastify-session-better-sqlite3-store.git"
},
"keywords": [
"fastify-session-better-sqlite3-store",
"fastify",
"session",
"better",
"sqlite3",
"store",
"sqlite",
"better-sqlite3",
"session-store"
],
"author": "mrdcvlsc",
"license": "MIT",
"devDependencies": {
"@fastify/cookie": "^11.0.2",
"@fastify/session": "^11.1.1",
"better-sqlite3": "^12.6.2",
"fastify": "^5.7.2",
"standard": "^17.1.2"
}
}