-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.15 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
{
"name": "@reyronald/async-local-storage",
"version": "1.0.1",
"description": "Utility wrappers around node:async_hooks",
"main": "dist/asyncContext.js",
"types": "dist/asyncContext.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reyronald/async-local-storage.git"
},
"author": {
"name": "Ronald Rey",
"email": "[email protected]",
"url": "https://github.com/reyronald"
},
"bugs": {
"url": "https://github.com/reyronald/async-local-storage/issues"
},
"homepage": "https://github.com/reyronald/async-local-storage#readme",
"license": "MIT",
"keywords": [
"continuation local storage",
"async_hooks",
"AsyncLocalStorage",
"context"
],
"devDependencies": {
"@types/express": "^4.17.14",
"@types/jest": "^29.2.4",
"@types/node": "^18.16.2",
"@types/supertest": "^2.0.12",
"express": "^4.18.2",
"jest": "^29.3.1",
"supertest": "^6.3.3",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"engines": {
"node": ">=16.20.0"
}
}