-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.05 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
{
"name": "async-context-containers",
"version": "1.1.0",
"description": "A library for sharing context deep down in asynchronous call stacks based on Node's async-hooks. Works with callbacks and promises",
"main": "dist/index.js",
"author": "Asger Nohns",
"license": "MIT",
"scripts": {
"build": "rimraf ./dist && tsc"
},
"devDependencies": {
"@types/node": "^13.7.0",
"nodemon": "^2.0.2",
"rimraf": "^3.0.2",
"ts-node": "^8.6.2",
"typescript": "^3.7.5"
},
"dependencies": {
"@types/cls-hooked": "^4.3.1",
"cls-hooked": "^4.2.2"
},
"files": [
"dist/**/*",
"README.md"
],
"keywords": [
"promise",
"async",
"await",
"request-context",
"express-request-context",
"context",
"provider",
"async-context",
"cls-hooked",
"middleware"
],
"repository": {
"type": "git",
"url": "https://github.com/nohns/async-context-containers"
}
}