forked from fastify/fastify-request-context
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.87 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@fastify/request-context",
"version": "5.0.0",
"description": "Request-scoped storage support, based on Asynchronous Local Storage, with fallback to cls-hooked for older Node versions",
"license": "MIT",
"maintainers": [
{
"name": "Igor Savin",
"email": "[email protected]"
}
],
"main": "index.js",
"type": "commonjs",
"types": "types/index.d.ts",
"scripts": {
"test": "npm run test:unit && npm run test:typescript",
"test:coverage": "tap -J test-tap/*.test.js --cov --coverage-report=lcovonly",
"test:jest": "jest --config=jest.config.json",
"test:tap": "tap",
"test:unit": "npm run test:jest && npm run test:tap",
"test:typescript": "tsd",
"lint": "eslint \"test/**/*.js\" \"test-tap/**/*.js\" index.js",
"prettier": "prettier --write \"{lib,test,test-tap}/**/*.js\" index.js \"types/**/*.ts\""
},
"dependencies": {
"fastify-plugin": "^4.0.0"
},
"devDependencies": {
"@fastify/pre-commit": "^2.0.2",
"@types/node": "^20.1.0",
"eslint": "^8.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"fastify": "^4.0.0-rc.2",
"jest": "^29.0.1",
"prettier": "^3.0.0",
"superagent": "^8.0.0",
"tap": "^16.0.0",
"tsd": "^0.29.0"
},
"homepage": "http://github.com/fastify/fastify-request-context",
"repository": {
"type": "git",
"url": "git://github.com/fastify/fastify-request-context.git"
},
"keywords": [
"fastify",
"plugin",
"request",
"context",
"http-context",
"request-context",
"fastify-http-context",
"fastify-request-context",
"asynchronouslocalstorage",
"asynchronous-local-storage"
],
"files": [
"README.md",
"LICENSE",
"lib/*",
"index.js",
"types/index.d.ts"
],
"publishConfig": {
"access": "public"
},
"pre-commit": [
"lint",
"test"
]
}