-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
52 lines (52 loc) · 1.34 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
48
49
50
51
52
{
"name": "fastify-server-session",
"version": "5.0.1",
"description": "A Fastify plugin to maintain state on the server",
"main": "plugin.js",
"scripts": {
"pretest": "docker-compose up -d mongodb",
"posttest": "docker-compose down",
"test": "tap 'test/**/*.test.js'",
"test-ci": "tap --cov 'test/**/*.test.js'",
"lint": "standard | snazzy",
"lint-ci": "standard"
},
"precommit": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/jsumners/fastify-server-session.git"
},
"keywords": [
"fastify",
"session"
],
"author": "James Sumners <james.sumners@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jsumners/fastify-server-session/issues"
},
"homepage": "https://github.com/jsumners/fastify-server-session#readme",
"devDependencies": {
"abstract-cache": "^1.0.1",
"abstract-cache-mongo": "^2.0.2",
"abstract-logging": "^2.0.0",
"cookie": "^0.4.1",
"fastify": "^3.0.0",
"fastify-caching": "^6.0.1",
"fastify-cookie": "^5.3.1",
"pre-commit": "^1.2.2",
"request": "^2.88.0",
"snazzy": "^9.0.0",
"standard": "^16.0.3",
"tap": "^15.0.9"
},
"dependencies": {
"cookie-signature": "^1.1.0",
"fastify-plugin": "^3.0.0",
"merge-options": "^3.0.4",
"uid-safe": "^2.1.5"
}
}