mirror of
https://github.com/graphql-hive/console
synced 2026-04-21 14:37:17 +00:00
307 lines
7.6 KiB
Diff
307 lines
7.6 KiB
Diff
diff --git a/package.json b/package.json
|
|
index 901cd3b836eeb2a42b7c75d9d4663b5401e8d225..6190d371acce4ddd7c2c3600ce9d1738b7e44419 100644
|
|
--- a/package.json
|
|
+++ b/package.json
|
|
@@ -1,152 +1,152 @@
|
|
{
|
|
- "name": "got",
|
|
- "version": "14.2.0",
|
|
- "description": "Human-friendly and powerful HTTP request library for Node.js",
|
|
- "license": "MIT",
|
|
- "repository": "sindresorhus/got",
|
|
- "funding": "https://github.com/sindresorhus/got?sponsor=1",
|
|
- "type": "module",
|
|
- "exports": {
|
|
- "types": "./dist/source/index.d.ts",
|
|
- "default": "./dist/source/index.js"
|
|
- },
|
|
- "sideEffects": false,
|
|
- "engines": {
|
|
- "node": ">=20"
|
|
- },
|
|
- "scripts": {
|
|
- "test": "xo && tsc --noEmit && NODE_OPTIONS='--import=tsx/esm' ava",
|
|
- "release": "np",
|
|
- "build": "del-cli dist && tsc",
|
|
- "prepare": "npm run build"
|
|
- },
|
|
- "files": [
|
|
- "dist/source"
|
|
- ],
|
|
- "keywords": [
|
|
- "http",
|
|
- "https",
|
|
- "http2",
|
|
- "get",
|
|
- "got",
|
|
- "url",
|
|
- "uri",
|
|
- "request",
|
|
- "simple",
|
|
- "curl",
|
|
- "wget",
|
|
- "fetch",
|
|
- "net",
|
|
- "network",
|
|
- "gzip",
|
|
- "brotli",
|
|
- "requests",
|
|
- "human-friendly",
|
|
- "axios",
|
|
- "superagent",
|
|
- "node-fetch",
|
|
- "ky"
|
|
- ],
|
|
- "dependencies": {
|
|
- "@sindresorhus/is": "^6.1.0",
|
|
- "@szmarczak/http-timer": "^5.0.1",
|
|
- "cacheable-lookup": "^7.0.0",
|
|
- "cacheable-request": "^10.2.14",
|
|
- "decompress-response": "^6.0.0",
|
|
- "form-data-encoder": "^4.0.2",
|
|
- "get-stream": "^8.0.1",
|
|
- "http2-wrapper": "^2.2.1",
|
|
- "lowercase-keys": "^3.0.0",
|
|
- "p-cancelable": "^4.0.1",
|
|
- "responselike": "^3.0.0"
|
|
- },
|
|
- "devDependencies": {
|
|
- "@hapi/bourne": "^3.0.0",
|
|
- "@sindresorhus/tsconfig": "^5.0.0",
|
|
- "@sinonjs/fake-timers": "^11.2.2",
|
|
- "@types/benchmark": "^2.1.5",
|
|
- "@types/express": "^4.17.21",
|
|
- "@types/node": "^20.10.0",
|
|
- "@types/pem": "^1.14.4",
|
|
- "@types/readable-stream": "^4.0.9",
|
|
- "@types/request": "^2.48.12",
|
|
- "@types/sinon": "^17.0.2",
|
|
- "@types/sinonjs__fake-timers": "^8.1.5",
|
|
- "ava": "^5.3.1",
|
|
- "axios": "^1.6.2",
|
|
- "benchmark": "^2.1.4",
|
|
- "bluebird": "^3.7.2",
|
|
- "body-parser": "^1.20.2",
|
|
- "create-cert": "^1.0.6",
|
|
- "create-test-server": "^3.0.1",
|
|
- "del-cli": "^5.1.0",
|
|
- "delay": "^6.0.0",
|
|
- "express": "^4.18.2",
|
|
- "form-data": "^4.0.0",
|
|
- "formdata-node": "^6.0.3",
|
|
- "nock": "^13.4.0",
|
|
- "node-fetch": "^3.3.2",
|
|
- "np": "^9.0.0",
|
|
- "nyc": "^15.1.0",
|
|
- "p-event": "^6.0.0",
|
|
- "pem": "^1.14.8",
|
|
- "pify": "^6.1.0",
|
|
- "readable-stream": "^4.4.2",
|
|
- "request": "^2.88.2",
|
|
- "sinon": "^17.0.1",
|
|
- "slow-stream": "0.0.4",
|
|
- "tempy": "^3.1.0",
|
|
- "then-busboy": "^5.2.1",
|
|
- "tough-cookie": "^4.1.3",
|
|
- "tsx": "^4.6.0",
|
|
- "type-fest": "^4.8.2",
|
|
- "typescript": "^5.3.2",
|
|
- "xo": "^0.56.0"
|
|
- },
|
|
- "ava": {
|
|
- "files": [
|
|
- "test/*"
|
|
- ],
|
|
- "timeout": "1m",
|
|
- "extensions": {
|
|
- "ts": "module"
|
|
- },
|
|
- "workerThreads": false
|
|
- },
|
|
- "nyc": {
|
|
- "reporter": [
|
|
- "text",
|
|
- "html",
|
|
- "lcov"
|
|
- ],
|
|
- "extension": [
|
|
- ".ts"
|
|
- ],
|
|
- "exclude": [
|
|
- "**/test/**"
|
|
- ]
|
|
- },
|
|
- "xo": {
|
|
- "ignores": [
|
|
- "documentation/examples/*"
|
|
- ],
|
|
- "rules": {
|
|
- "@typescript-eslint/no-empty-function": "off",
|
|
- "n/no-deprecated-api": "off",
|
|
- "@typescript-eslint/no-implicit-any-catch": "off",
|
|
- "ava/assertion-arguments": "off",
|
|
- "@typescript-eslint/no-unsafe-member-access": "off",
|
|
- "@typescript-eslint/no-unsafe-return": "off",
|
|
- "@typescript-eslint/no-unsafe-assignment": "off",
|
|
- "@typescript-eslint/no-unsafe-call": "off",
|
|
- "@typescript-eslint/await-thenable": "off",
|
|
- "@typescript-eslint/no-redundant-type-constituents": "off",
|
|
- "@typescript-eslint/no-unsafe-argument": "off",
|
|
- "@typescript-eslint/promise-function-async": "off",
|
|
- "no-lone-blocks": "off",
|
|
- "unicorn/no-await-expression-member": "off",
|
|
- "unicorn/prefer-event-target": "off"
|
|
- }
|
|
- },
|
|
- "runkitExampleFilename": "./documentation/examples/runkit-example.js"
|
|
+ "name": "got",
|
|
+ "version": "14.2.0",
|
|
+ "description": "Human-friendly and powerful HTTP request library for Node.js",
|
|
+ "license": "MIT",
|
|
+ "repository": "sindresorhus/got",
|
|
+ "funding": "https://github.com/sindresorhus/got?sponsor=1",
|
|
+ "type": "module",
|
|
+ "types": "./dist/source/index.d.ts",
|
|
+ "exports": {
|
|
+ "default": "./dist/source/index.js"
|
|
+ },
|
|
+ "sideEffects": false,
|
|
+ "engines": {
|
|
+ "node": ">=20"
|
|
+ },
|
|
+ "scripts": {
|
|
+ "test": "xo && tsc --noEmit && NODE_OPTIONS='--import=tsx/esm' ava",
|
|
+ "release": "np",
|
|
+ "build": "del-cli dist && tsc",
|
|
+ "prepare": "npm run build"
|
|
+ },
|
|
+ "files": [
|
|
+ "dist/source"
|
|
+ ],
|
|
+ "keywords": [
|
|
+ "http",
|
|
+ "https",
|
|
+ "http2",
|
|
+ "get",
|
|
+ "got",
|
|
+ "url",
|
|
+ "uri",
|
|
+ "request",
|
|
+ "simple",
|
|
+ "curl",
|
|
+ "wget",
|
|
+ "fetch",
|
|
+ "net",
|
|
+ "network",
|
|
+ "gzip",
|
|
+ "brotli",
|
|
+ "requests",
|
|
+ "human-friendly",
|
|
+ "axios",
|
|
+ "superagent",
|
|
+ "node-fetch",
|
|
+ "ky"
|
|
+ ],
|
|
+ "dependencies": {
|
|
+ "@sindresorhus/is": "^6.1.0",
|
|
+ "@szmarczak/http-timer": "^5.0.1",
|
|
+ "cacheable-lookup": "^7.0.0",
|
|
+ "cacheable-request": "^10.2.14",
|
|
+ "decompress-response": "^6.0.0",
|
|
+ "form-data-encoder": "^4.0.2",
|
|
+ "get-stream": "^8.0.1",
|
|
+ "http2-wrapper": "^2.2.1",
|
|
+ "lowercase-keys": "^3.0.0",
|
|
+ "p-cancelable": "^4.0.1",
|
|
+ "responselike": "^3.0.0"
|
|
+ },
|
|
+ "devDependencies": {
|
|
+ "@hapi/bourne": "^3.0.0",
|
|
+ "@sindresorhus/tsconfig": "^5.0.0",
|
|
+ "@sinonjs/fake-timers": "^11.2.2",
|
|
+ "@types/benchmark": "^2.1.5",
|
|
+ "@types/express": "^4.17.21",
|
|
+ "@types/node": "^20.10.0",
|
|
+ "@types/pem": "^1.14.4",
|
|
+ "@types/readable-stream": "^4.0.9",
|
|
+ "@types/request": "^2.48.12",
|
|
+ "@types/sinon": "^17.0.2",
|
|
+ "@types/sinonjs__fake-timers": "^8.1.5",
|
|
+ "ava": "^5.3.1",
|
|
+ "axios": "^1.6.2",
|
|
+ "benchmark": "^2.1.4",
|
|
+ "bluebird": "^3.7.2",
|
|
+ "body-parser": "^1.20.2",
|
|
+ "create-cert": "^1.0.6",
|
|
+ "create-test-server": "^3.0.1",
|
|
+ "del-cli": "^5.1.0",
|
|
+ "delay": "^6.0.0",
|
|
+ "express": "^4.18.2",
|
|
+ "form-data": "^4.0.0",
|
|
+ "formdata-node": "^6.0.3",
|
|
+ "nock": "^13.4.0",
|
|
+ "node-fetch": "^3.3.2",
|
|
+ "np": "^9.0.0",
|
|
+ "nyc": "^15.1.0",
|
|
+ "p-event": "^6.0.0",
|
|
+ "pem": "^1.14.8",
|
|
+ "pify": "^6.1.0",
|
|
+ "readable-stream": "^4.4.2",
|
|
+ "request": "^2.88.2",
|
|
+ "sinon": "^17.0.1",
|
|
+ "slow-stream": "0.0.4",
|
|
+ "tempy": "^3.1.0",
|
|
+ "then-busboy": "^5.2.1",
|
|
+ "tough-cookie": "^4.1.3",
|
|
+ "tsx": "^4.6.0",
|
|
+ "type-fest": "^4.8.2",
|
|
+ "typescript": "^5.3.2",
|
|
+ "xo": "^0.56.0"
|
|
+ },
|
|
+ "ava": {
|
|
+ "files": [
|
|
+ "test/*"
|
|
+ ],
|
|
+ "timeout": "1m",
|
|
+ "extensions": {
|
|
+ "ts": "module"
|
|
+ },
|
|
+ "workerThreads": false
|
|
+ },
|
|
+ "nyc": {
|
|
+ "reporter": [
|
|
+ "text",
|
|
+ "html",
|
|
+ "lcov"
|
|
+ ],
|
|
+ "extension": [
|
|
+ ".ts"
|
|
+ ],
|
|
+ "exclude": [
|
|
+ "**/test/**"
|
|
+ ]
|
|
+ },
|
|
+ "xo": {
|
|
+ "ignores": [
|
|
+ "documentation/examples/*"
|
|
+ ],
|
|
+ "rules": {
|
|
+ "@typescript-eslint/no-empty-function": "off",
|
|
+ "n/no-deprecated-api": "off",
|
|
+ "@typescript-eslint/no-implicit-any-catch": "off",
|
|
+ "ava/assertion-arguments": "off",
|
|
+ "@typescript-eslint/no-unsafe-member-access": "off",
|
|
+ "@typescript-eslint/no-unsafe-return": "off",
|
|
+ "@typescript-eslint/no-unsafe-assignment": "off",
|
|
+ "@typescript-eslint/no-unsafe-call": "off",
|
|
+ "@typescript-eslint/await-thenable": "off",
|
|
+ "@typescript-eslint/no-redundant-type-constituents": "off",
|
|
+ "@typescript-eslint/no-unsafe-argument": "off",
|
|
+ "@typescript-eslint/promise-function-async": "off",
|
|
+ "no-lone-blocks": "off",
|
|
+ "unicorn/no-await-expression-member": "off",
|
|
+ "unicorn/prefer-event-target": "off"
|
|
+ }
|
|
+ },
|
|
+ "runkitExampleFilename": "./documentation/examples/runkit-example.js"
|
|
}
|