bae705aa97
- Add NFC ePassport roadmap (ICAO 9303, eIDAS) - Add TensorFlow.js edge face detection (BlazeFace) - Add structured audit logger (GDPR-compliant) - Risk scoring support Part of KYC Apple Native UX v1.1.0
70 lines
1.7 KiB
JSON
70 lines
1.7 KiB
JSON
{
|
|
"name": "teeny-request",
|
|
"version": "10.1.3",
|
|
"description": "Like request, but smaller.",
|
|
"main": "./build/src/index.js",
|
|
"types": "./build/src/index.d.ts",
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"scripts": {
|
|
"test": "c8 mocha build/test",
|
|
"compile": "tsc -p .",
|
|
"pretest": "npm run compile",
|
|
"lint": "gts check",
|
|
"clean": "gts clean",
|
|
"fix": "gts fix",
|
|
"prepare": "npm run compile",
|
|
"docs": "jsdoc -c .jsdoc.js",
|
|
"system-test": "echo no system test",
|
|
"samples-test": "echo no samples",
|
|
"precompile": "gts clean"
|
|
},
|
|
"files": [
|
|
"build/src"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"directory": "packages/teeny-request",
|
|
"url": "https://github.com/googleapis/google-cloud-node-core.git"
|
|
},
|
|
"keywords": [
|
|
"request",
|
|
"node-fetch",
|
|
"fetch"
|
|
],
|
|
"author": "fhinkel",
|
|
"license": "Apache-2.0",
|
|
"bugs": {
|
|
"url": "https://github.com/googleapis/teeny-request/issues"
|
|
},
|
|
"homepage": "https://github.com/googleapis/google-cloud-node-core/tree/main/packages/teeny-request",
|
|
"dependencies": {
|
|
"http-proxy-agent": "^7.0.0",
|
|
"https-proxy-agent": "^7.0.1",
|
|
"node-fetch": "^3.3.2",
|
|
"stream-events": "^1.0.5"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/plugin-proposal-private-methods": "^7.18.6",
|
|
"@types/mocha": "^10.0.10",
|
|
"@types/node-fetch": "^2.6.12",
|
|
"@types/sinon": "^17.0.3",
|
|
"c8": "^10.1.3",
|
|
"codecov": "^3.8.3",
|
|
"gts": "^6.0.2",
|
|
"jsdoc": "^4.0.4",
|
|
"jsdoc-fresh": "^5.0.0",
|
|
"jsdoc-region-tag": "^3.0.0",
|
|
"mocha": "^11.1.0",
|
|
"nock": "^14.0.1",
|
|
"sinon": "^19.0.2",
|
|
"typescript": "^5.7.3"
|
|
},
|
|
"nyc": {
|
|
"exclude": [
|
|
"build/test"
|
|
]
|
|
}
|
|
}
|