forked from SerayaEryn/fastify-session
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 941 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
{
"name": "fastify-session",
"version": "1.2.0",
"description": "a session plugin for fastify",
"main": "lib/fastifySession.js",
"scripts": {
"unit": "tap test/*.test.js",
"test": "npm run lint && npm run unit",
"lint": "standard lib/* test/*",
"coveralls": "npm run unit -- --cov",
"coverage-report": "npm run coveralls && tap --coverage-report=lcov"
},
"keywords": [
"session",
"fastify"
],
"author": "Denis Fäcke",
"license": "MIT",
"dependencies": {
"cookie-signature": "^1.0.6",
"fastify-plugin": "^1.0.0",
"uid-safe": "^2.1.5"
},
"engines": {
"node": ">= 6.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SerayaEryn/fastify-session.git"
},
"devDependencies": {
"coveralls": "^3.0.0",
"fastify": "^1.7.0",
"fastify-cookie": "^2.0.1",
"request": "^2.85.0",
"standard": "^12.0.1",
"tap": "^12.0.0"
}
}