This repository has been archived by the owner on Nov 8, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.28 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@foxify/http",
"version": "1.0.0-beta.2",
"description": "The Foxify HTTP module",
"homepage": "https://github.com/foxifyjs/http#readme",
"author": "Ardalan Amini <ardalanamini22@gmail.com> (https://ardalanamini.com/)",
"funding": [
{
"type": "opencollective",
"url": "https://opencollective.com/foxify"
}
],
"license": "MIT",
"repository": "github:foxifyjs/http",
"bugs": {
"url": "https://github.com/foxifyjs/http/issues"
},
"keywords": [
"foxify",
"http",
"request",
"response",
"node",
"nodejs"
],
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"lint": "eslint src",
"lint:format": "prettier -w src && eslint --fix src",
"test": "node --no-compilation-cache --expose-gc node_modules/jest/bin/jest --logHeapUsage",
"test:coverage": "npm test -- --coverage",
"test:ci": "npm run test:coverage -- --ci --verbose"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"dependencies": {
"@foxify/fresh": "^1.1.0",
"content-disposition": "^0.5.4",
"content-type": "^1.0.4",
"cookie": "^0.5.0",
"cookie-signature": "^1.2.0",
"escape-html": "^1.0.3",
"etag": "^1.8.1",
"mime-types": "^2.1.35",
"negotiator": "^0.6.3",
"on-finished": "^2.4.1",
"proxy-addr": "^2.0.7",
"qs": "^6.11.0",
"send": "^0.18.0",
"type-is": "^1.6.18"
},
"peerDependencies": {
"@types/node": ">=18"
},
"devDependencies": {
"@foxify/inject": "^1.1.0",
"@types/content-disposition": "^0.5.5",
"@types/content-type": "^1.1.5",
"@types/cookie": "^0.5.1",
"@types/cookie-parser": "^1.4.3",
"@types/cookie-signature": "^1.0.4",
"@types/escape-html": "^1.0.2",
"@types/etag": "^1.8.1",
"@types/jest": "^29.2.0",
"@types/mime-types": "^2.1.1",
"@types/negotiator": "^0.6.1",
"@types/node": "^18.11.7",
"@types/on-finished": "^2.3.1",
"@types/proxy-addr": "^2.0.0",
"@types/qs": "^6.9.7",
"@types/send": "^0.17.1",
"@types/type-is": "^1.6.3",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"cookie-parser": "^1.4.6",
"eslint": "^8.26.0",
"jest": "^29.2.2",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
}
}