-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.67 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
{
"name": "express-async-context",
"version": "1.1.0",
"description": "Context manager for Express routing lib",
"main": "lib/index.js",
"scripts": {
"test": "jest",
"lint": "eslint \"./src/**/*.ts\"",
"compile:cjs": "tsc --build tsconfig.cjs.json",
"compile:esm": "tsc",
"clean:lib": "rm -rf ./lib",
"clean:esm": "rm -rf ./esm",
"clean": "npm run clean:lib; npm run clean:esm",
"compile": "npm run clean; npm run compile:cjs; npm run compile:esm"
},
"keywords": [
"express",
"context",
"async",
"local",
"storage"
],
"author": "Dmitry Scheglov <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/express": "^4.17.6",
"@types/jest": "^24.9.1",
"@types/node": "^14.18.21",
"@types/supertest": "2.0.11",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"eslint": "^6.7.2",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jest": "^23.13.2",
"express": "^4.17.1",
"jest": "^28.1.1",
"nodemon": "^2.0.0",
"supertest": "^6.1.3",
"ts-jest": "^28.0.4",
"ts-node": "^10.8.1",
"typescript": "^4.7.3"
},
"peerDependencies": {
"express": "^4.17.1"
},
"directories": {
"example": "example"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/DScheglov/express-async-context.git"
},
"bugs": {
"url": "https://github.com/DScheglov/express-async-context/issues"
},
"homepage": "https://github.com/DScheglov/express-async-context#readme",
"engines": {
"node": ">=12.17.0 <13.0.0 || >=13.10.0"
}
}