-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.53 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
63
64
{
"name": "req-fix-hostname",
"version": "0.1.1",
"description": "Set req.hostname to the value of a header",
"main": "index.cjs",
"scripts": {
"lint": "eslint .",
"test": "nyc mocha",
"test:debug": "DEBUG=rfh:* nyc mocha"
},
"repository": "https://github.com/someimportantcompany/req-fix-hostname",
"bugs": "https://github.com/someimportantcompany/req-fix-hostname/issues",
"homepage": "https://github.com/someimportantcompany/req-fix-hostname#readme",
"author": "jdrydn <[email protected]> (https://jdrydn.com)",
"license": "MIT",
"files": [
"*.cjs",
"*.d.ts"
],
"devDependencies": {
"@babel/eslint-parser": "^7.21.8",
"@types/express": "^4.17.17",
"@types/koa": "^2.13.6",
"@types/mocha": "^10.0.1",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"debug": "^4.3.4",
"eslint": "^8.40.0",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-node": "^11.1.0",
"express": "^4.18.2",
"koa": "^2.14.2",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"supertest": "^6.3.3",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.0.4"
},
"mocha": {
"exit": true,
"require": [
"ts-node/register",
"tsconfig-paths/register"
],
"reporter": [
"spec"
],
"spec": [
"./test/*.test.{,+(js|ts)}"
]
},
"nyc": {
"exclude": [
"*.d.ts",
"test/"
],
"reporter": [
"lcov",
"text"
]
}
}