-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
49 lines (49 loc) · 1.21 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": "express-http-context",
"version": "1.2.4",
"description": "Get and set request-scoped context anywhere",
"main": "index.js",
"browser": "browser.js",
"engines": {
"node": ">=8.0.0 <10.0.0 || >=10.4.0"
},
"scripts": {
"cover": "istanbul cover _mocha index.js -R ./tests --coverage",
"test": "mocha ./tests",
"coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/skonves/express-http-context.git"
},
"keywords": [
"express",
"http",
"request",
"context"
],
"author": "Steve Konves",
"contributors": [
"Steve Konves",
"Amiram Korach"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/skonves/express-http-context/issues"
},
"homepage": "https://github.com/skonves/express-http-context#readme",
"dependencies": {
"@types/cls-hooked": "^4.2.1",
"@types/express": "^4.16.0",
"cls-hooked": "^4.2.2"
},
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.1",
"express": "^4.16.2",
"istanbul": "^0.4.5",
"mocha": "^5.0.1",
"mocha-lcov-reporter": "^1.3.0",
"supertest": "^3.0.0"
}
}