aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/node_modules/@actions/http-client/package.json
blob: ed134372484cf75b9df6314dcd02d0e645c1b786 (plain) (blame)
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
{
  "name": "@actions/http-client",
  "version": "2.2.0",
  "description": "Actions Http Client",
  "keywords": [
    "github",
    "actions",
    "http"
  ],
  "homepage": "https://github.com/actions/toolkit/tree/main/packages/http-client",
  "license": "MIT",
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "directories": {
    "lib": "lib",
    "test": "__tests__"
  },
  "files": [
    "lib",
    "!.DS_Store"
  ],
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/actions/toolkit.git",
    "directory": "packages/http-client"
  },
  "scripts": {
    "audit-moderate": "npm install && npm audit --json --audit-level=moderate > audit.json",
    "test": "echo \"Error: run tests from root\" && exit 1",
    "build": "tsc",
    "format": "prettier --write **/*.ts",
    "format-check": "prettier --check **/*.ts",
    "tsc": "tsc"
  },
  "bugs": {
    "url": "https://github.com/actions/toolkit/issues"
  },
  "devDependencies": {
    "@types/node": "20.7.1",
    "@types/tunnel": "0.0.3",
    "proxy": "^2.1.1",
    "@types/proxy": "^1.0.1"
  },
  "dependencies": {
    "tunnel": "^0.0.6",
    "undici": "^5.25.4"
  }
}