CoolFace
Apppublic

strong-tie/inbound-calls

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
package.json41 linesDownload Raw Back to fastify-plugin
1{2  "name": "fastify-plugin",3  "version": "5.0.1",4  "description": "Plugin helper for Fastify",5  "main": "plugin.js",6  "type": "commonjs",7  "types": "types/plugin.d.ts",8  "scripts": {9    "lint": "standard",10    "test": "npm run test:unit && npm run test:typescript",11    "test:unit": "c8 --100 node --test",12    "test:coverage": "c8 node --test && c8 report --reporter=html",13    "test:typescript": "tsd"14  },15  "repository": {16    "type": "git",17    "url": "git+https://github.com/fastify/fastify-plugin.git"18  },19  "keywords": [20    "plugin",21    "helper",22    "fastify"23  ],24  "author": "Tomas Della Vedova - @delvedor (http://delved.org)",25  "license": "MIT",26  "bugs": {27    "url": "https://github.com/fastify/fastify-plugin/issues"28  },29  "homepage": "https://github.com/fastify/fastify-plugin#readme",30  "devDependencies": {31    "@fastify/pre-commit": "^2.1.0",32    "@fastify/type-provider-typebox": "^5.0.0-pre.fv5.1",33    "@types/node": "^22.0.0",34    "c8": "^10.1.2",35    "fastify": "^5.0.0",36    "proxyquire": "^2.1.3",37    "standard": "^17.1.0",38    "tsd": "^0.31.0"39  }40}41