CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
package.json108 linesDownload Raw Back to gaxios
1{2  "name": "gaxios",3  "version": "7.1.4",4  "description": "A simple common HTTP client specifically for Google APIs and services.",5  "main": "build/cjs/src/index.js",6  "types": "build/cjs/src/index.d.ts",7  "files": [8    "build/"9  ],10  "exports": {11    ".": {12      "import": {13        "types": "./build/esm/src/index.d.ts",14        "default": "./build/esm/src/index.js"15      },16      "require": {17        "types": "./build/cjs/src/index.d.ts",18        "default": "./build/cjs/src/index.js"19      }20    }21  },22  "scripts": {23    "lint": "gts check --no-inline-config",24    "test": "c8 mocha build/esm/test",25    "presystem-test": "npm run compile",26    "system-test": "mocha build/esm/system-test --timeout 80000",27    "compile": "tsc -b ./tsconfig.json ./tsconfig.cjs.json && node utils/enable-esm.mjs",28    "fix": "gts fix",29    "prepare": "npm run compile",30    "pretest": "npm run compile",31    "webpack": "webpack",32    "prebrowser-test": "npm run compile",33    "browser-test": "node build/browser-test/browser-test-runner.js",34    "docs": "jsdoc -c .jsdoc.js",35    "docs-test": "linkinator docs",36    "predocs-test": "npm run docs",37    "samples-test": "cd samples/ && npm link ../ && npm test && cd ../",38    "prelint": "cd samples; npm link ../; npm install",39    "clean": "gts clean"40  },41  "repository": {42    "type": "git",43    "directory": "packages/gaxios",44    "url": "https://github.com/googleapis/google-cloud-node-core.git"45  },46  "keywords": [47    "google"48  ],49  "engines": {50    "node": ">=18"51  },52  "author": "Google, LLC",53  "license": "Apache-2.0",54  "devDependencies": {55    "@babel/plugin-proposal-private-methods": "^7.18.6",56    "@types/cors": "^2.8.6",57    "@types/express": "^5.0.0",58    "@types/extend": "^3.0.1",59    "@types/mocha": "^10.0.10",60    "@types/multiparty": "4.2.1",61    "@types/mv": "^2.1.0",62    "@types/ncp": "^2.0.8",63    "@types/node": "^22.13.1",64    "@types/sinon": "^17.0.3",65    "@types/tmp": "^0.2.6",66    "assert": "^2.0.0",67    "browserify": "^17.0.0",68    "c8": "^10.1.3",69    "cors": "^2.8.5",70    "express": "^5.0.0",71    "gts": "^6.0.2",72    "is-docker": "^3.0.0",73    "jsdoc": "^4.0.4",74    "jsdoc-fresh": "^5.0.0",75    "jsdoc-region-tag": "^4.0.0",76    "karma": "^6.0.0",77    "karma-chrome-launcher": "^3.0.0",78    "karma-coverage": "^2.0.0",79    "karma-firefox-launcher": "^2.0.0",80    "karma-mocha": "^2.0.0",81    "karma-remap-coverage": "^0.1.5",82    "karma-sourcemap-loader": "^0.4.0",83    "karma-webpack": "^5.0.1",84    "linkinator": "^6.1.2",85    "mocha": "^11.1.0",86    "multiparty": "^4.2.1",87    "mv": "^2.1.1",88    "ncp": "^2.0.0",89    "nock": "^14.0.5",90    "null-loader": "^4.0.1",91    "pack-n-play": "^4.0.0",92    "puppeteer": "^24.0.0",93    "sinon": "^21.0.0",94    "stream-browserify": "^3.0.0",95    "tmp": "0.2.5",96    "ts-loader": "^9.5.2",97    "typescript": "5.8.3",98    "webpack": "^5.97.1",99    "webpack-cli": "^6.0.1"100  },101  "dependencies": {102    "extend": "^3.0.2",103    "https-proxy-agent": "^7.0.1",104    "node-fetch": "^3.3.2"105  },106  "homepage": "https://github.com/googleapis/google-cloud-node-core/tree/main/packages/gaxios"107}108 
basant307/AI_Governance_Project · CoolFace