-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
53 lines (53 loc) · 1.22 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
{
"name": "@heroku/http-call",
"description": "make http requests",
"version": "5.4.0",
"author": "Heroku",
"bugs": "https://github.com/heroku/http-call/issues",
"dependencies": {
"content-type": "^1.0.5",
"debug": "^4.4.0",
"is-retry-allowed": "^2.2.0",
"is-stream": "^2.0.0",
"tunnel-agent": "^0.6.0"
},
"devDependencies": {
"@types/content-type": "^1.1.8",
"@types/istanbul-lib-report": "^3.0.3",
"@types/jest": "^29.5.14",
"@types/nock": "^10.0.3",
"@types/node": "20.14.8",
"eslint": "^7.32.0",
"eslint-config-oclif": "^4.0.0",
"eslint-config-oclif-typescript": "^1.0.2",
"jest": "^29.7.0",
"nock": "^11.9.1",
"ts-jest": "^29.2.5",
"typescript": "4.8.4"
},
"engines": {
"node": ">=16.0.0"
},
"files": [
"lib"
],
"homepage": "https://github.com/heroku/http-call",
"keywords": [
"http",
"request",
"rest"
],
"license": "ISC",
"main": "lib/http.js",
"repository": "heroku/http-call",
"resolutions": {
"@types/istanbul-lib-report": "^3.0.3"
},
"scripts": {
"prepare": "rm -rf lib && tsc",
"pretest": "tsc",
"posttest": "eslint . --ext .ts",
"test": "jest"
},
"types": "./lib/http.d.ts"
}