-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.26 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
{
"name": "node-als-example",
"version": "1.0.0",
"private": true,
"description": "An example of the Async Local Storage usage in Node",
"homepage": "https://github.com/peterdee/node-als-example",
"author": {
"name": "Peter Dyumin",
"url": "https://github.com/peterdee"
},
"type": "module",
"main": "index.js",
"scripts": {
"lint": "eslint",
"start": "nodemon index.js",
"test": "npx --node-arg=--experimental-vm-modules jest --detectOpenHandles --forceExit"
},
"license": "MIT",
"engines": {
"node": "~14.15.4",
"npm": "~6.14.10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peterdee/node-als-example"
},
"keywords": [
"ALS",
"async_hooks",
"AsyncLocalStorage",
"Express",
"Jest",
"Node"
],
"dependencies": {
"cors": "^2.8.5",
"cuid": "^2.1.8",
"express": "^4.17.1"
},
"devDependencies": {
"axios": "^0.21.1",
"eslint": "^7.17.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"jest": "^26.6.3",
"jest-environment-jsdom-sixteen": "^1.0.3",
"jest-environment-node": "^26.6.2",
"nodemon": "^2.0.6"
},
"jest": {
"testEnvironment": "jest-environment-jsdom-sixteen",
"transform": {}
}
}