-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
52 lines (52 loc) · 1.14 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
{
"name": "http-request-context",
"version": "0.3.1",
"description": "Store context in http middleware lifecycle.",
"main": "index.js",
"files": [
"index.js",
"History.md"
],
"engines": {
"node": ">=8.2.0"
},
"engineStrict": true,
"scripts": {
"fix": "standard \"**/**.js\" --fix",
"lint": "standard \"**/**.js\"",
"test": "mocha --exit",
"coverage": "nyc --reporter=text --reporter=lcov npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zhujun24/http-request-context.git"
},
"pre-commit": [
"lint",
"test",
"coverage"
],
"keywords": [
"http",
"request",
"context"
],
"author": "zhujun24",
"license": "ISC",
"bugs": {
"url": "https://github.com/zhujun24/http-request-context/issues"
},
"homepage": "https://github.com/zhujun24/http-request-context#readme",
"devDependencies": {
"assert": "^2.0.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"express": "^4.17.1",
"koa": "^2.11.0",
"mocha": "^7.1.1",
"nyc": "^14.1.1",
"pre-commit": "^1.2.2",
"request": "^2.88.2",
"standard": "^14.3.3"
}
}