-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.32 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.32 KB
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
{
"name": "fastify-http-context",
"version": "2.0.0",
"description": "Simulates a thread of execution to allow for true session context to take place per api call within the fastify lifecycle of calls.",
"main": "index.js",
"scripts": {
"test": "nyc mocha test/**/*.js",
"benchmark": "concurrently -k -s first \"node ./examples/baseline.js\" \"sleep 10 && autocannon -c 100 -d 5 -p 10 localhost:3000/\""
},
"files": [
"index.js",
"async-local-storage.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/thorough-developer/fastify-http-context.git"
},
"keywords": [
"fastify",
"fastify-plugin",
"http-context",
"express-http-context"
],
"author": "Chris Washington <c.arnez.washington@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/chris-washington/fastify-session-context/issues"
},
"homepage": "https://github.com/chris-washington/fastify-session-context#readme",
"dependencies": {
"fast-als": "^1.0.0",
"fastify-plugin": "^1.6.1"
},
"devDependencies": {
"autocannon": "^4.6.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"concurrently": "^5.1.0",
"fastify": "^2.13.1",
"mocha": "^7.1.1",
"nyc": "^15.0.1",
"proxyquire": "^2.1.3",
"sinon": "^9.0.2",
"sinon-chai": "^3.5.0"
}
}