CoolFace
Apppublic

strong-tie/inbound-calls

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
package.json86 linesDownload Raw Back to light-my-request
1{2  "name": "light-my-request",3  "version": "6.6.0",4  "description": "Fake HTTP injection library",5  "main": "index.js",6  "type": "commonjs",7  "types": "types/index.d.ts",8  "dependencies": {9    "cookie": "^1.0.1",10    "process-warning": "^4.0.0",11    "set-cookie-parser": "^2.6.0"12  },13  "devDependencies": {14    "@fastify/ajv-compiler": "^4.0.0",15    "@fastify/pre-commit": "^2.1.0",16    "@types/node": "^22.7.7",17    "c8": "^10.1.2",18    "end-of-stream": "^1.4.4",19    "eslint": "^9.17.0",20    "express": "^4.19.2",21    "form-auto-content": "^3.2.1",22    "form-data": "^4.0.0",23    "formdata-node": "^6.0.3",24    "multer": "^1.4.5-lts.1",25    "neostandard": "^0.12.0",26    "tinybench": "^3.0.0",27    "tsd": "^0.31.0",28    "undici": "^7.0.0"29  },30  "scripts": {31    "benchmark": "node benchmark/benchmark.js",32    "coverage": "npm run unit -- --cov --coverage-report=html",33    "lint": "eslint",34    "lint:fix": "eslint --fix",35    "test": "npm run lint && npm run test:unit && npm run test:typescript",36    "test:typescript": "tsd",37    "test:unit": "c8 --100 node --test"38  },39  "repository": {40    "type": "git",41    "url": "git+https://github.com/fastify/light-my-request.git"42  },43  "keywords": [44    "http",45    "inject",46    "fake",47    "request",48    "server"49  ],50  "author": "Tomas Della Vedova - @delvedor (http://delved.org)",51  "contributors": [52    {53      "name": "Matteo Collina",54      "email": "hello@matteocollina.com"55    },56    {57      "name": "Manuel Spigolon",58      "email": "behemoth89@gmail.com"59    },60    {61      "name": "Aras Abbasi",62      "email": "aras.abbasi@gmail.com"63    },64    {65      "name": "Frazer Smith",66      "email": "frazer.dev@icloud.com",67      "url": "https://github.com/fdawgs"68    }69  ],70  "license": "BSD-3-Clause",71  "bugs": {72    "url": "https://github.com/fastify/light-my-request/issues"73  },74  "homepage": "https://github.com/fastify/light-my-request#readme",75  "funding": [76    {77      "type": "github",78      "url": "https://github.com/sponsors/fastify"79    },80    {81      "type": "opencollective",82      "url": "https://opencollective.com/fastify"83    }84  ]85}86