-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
37 lines (37 loc) · 1.01 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
{
"name": "@mondaydotcomorg/node-execution-context",
"version": "1.0.4",
"description": "Persistent execution context allowing you to get/set the context anywhere implemented using async hooks. Can be used to create request level execution context, a stack trace that persists through async resources, or anything else you need to survive the event loop. ",
"main": "index.js",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mondaycom/node-execution-context.git"
},
"keywords": [
"node",
"execution",
"context",
"http",
"request",
"request-scoped",
"async-hooks",
"async",
"context",
"persistent"
],
"author": "Shanee Radzewsky",
"license": "MIT",
"bugs": {
"url": "https://github.com/mondaycom/node-execution-context/issues"
},
"homepage": "https://github.com/mondaycom/node-execution-context#readme",
"dependencies": {
"async_hooks": "^1.0.0"
},
"devDependencies": {
"jest": "^25.1.0"
}
}