1 | {
|
2 | "name": "http-call",
|
3 | "description": "make http requests",
|
4 | "version": "5.3.0",
|
5 | "author": "Jeff Dickey @jdxcode",
|
6 | "bugs": "https://github.com/heroku/http-call/issues",
|
7 | "dependencies": {
|
8 | "content-type": "^1.0.4",
|
9 | "debug": "^4.1.1",
|
10 | "is-retry-allowed": "^1.1.0",
|
11 | "is-stream": "^2.0.0",
|
12 | "parse-json": "^4.0.0",
|
13 | "tunnel-agent": "^0.6.0"
|
14 | },
|
15 | "devDependencies": {
|
16 | "@heroku-cli/tslint": "^1.1.4",
|
17 | "@types/content-type": "^1.1.3",
|
18 | "@types/is-stream": "^1.1.0",
|
19 | "@types/jest": "^24.0.11",
|
20 | "@types/nock": "^9.3.1",
|
21 | "@types/node": "^11.13.7",
|
22 | "@types/parse-json": "^4.0.0",
|
23 | "jest": "^24.7.1",
|
24 | "nock": "^10.0.6",
|
25 | "ts-jest": "^24.0.2",
|
26 | "tslint": "^5.16.0",
|
27 | "typescript": "^3.4.5"
|
28 | },
|
29 | "engines": {
|
30 | "node": ">=8.0.0"
|
31 | },
|
32 | "files": [
|
33 | "lib"
|
34 | ],
|
35 | "homepage": "https://github.com/heroku/http-call",
|
36 | "keywords": [
|
37 | "http",
|
38 | "request",
|
39 | "rest"
|
40 | ],
|
41 | "license": "ISC",
|
42 | "main": "lib/http.js",
|
43 | "repository": "heroku/http-call",
|
44 | "scripts": {
|
45 | "prepare": "rm -rf lib && tsc",
|
46 | "pretest": "tsc",
|
47 | "posttest": "tslint -p .",
|
48 | "test": "jest"
|
49 | },
|
50 | "types": "./lib/http.d.ts"
|
51 | }
|