75 lines
1.7 KiB
JSON
75 lines
1.7 KiB
JSON
{
|
|
"name": "avvio",
|
|
"version": "9.2.0",
|
|
"description": "Asynchronous bootstrapping of Node applications",
|
|
"main": "boot.js",
|
|
"type": "commonjs",
|
|
"types": "index.d.ts",
|
|
"scripts": {
|
|
"lint": "eslint",
|
|
"lint:fix": "eslint --fix",
|
|
"test": "npm run test:unit && npm run test:typescript",
|
|
"test:unit": "borp --reporter=@jsumners/line-reporter",
|
|
"test:coverage": "c8 borp --reporter=@jsumners/line-reporter",
|
|
"test:typescript": "tsc --project ./test/types/tsconfig.json"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/fastify/avvio.git"
|
|
},
|
|
"keywords": [
|
|
"async",
|
|
"boot",
|
|
"delayed",
|
|
"open"
|
|
],
|
|
"author": "Matteo Collina <hello@matteocollina.com>",
|
|
"contributors": [
|
|
{
|
|
"name": "Tomas Della Vedova",
|
|
"url": "http://delved.org"
|
|
},
|
|
{
|
|
"name": "Manuel Spigolon",
|
|
"email": "behemoth89@gmail.com"
|
|
},
|
|
{
|
|
"name": "Aras Abbasi",
|
|
"email": "aras.abbasi@gmail.com"
|
|
},
|
|
{
|
|
"name": "Frazer Smith",
|
|
"email": "frazer.dev@icloud.com",
|
|
"url": "https://github.com/fdawgs"
|
|
}
|
|
],
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/fastify/avvio/issues"
|
|
},
|
|
"homepage": "https://github.com/fastify/avvio#readme",
|
|
"funding": [
|
|
{
|
|
"type": "github",
|
|
"url": "https://github.com/sponsors/fastify"
|
|
},
|
|
{
|
|
"type": "opencollective",
|
|
"url": "https://opencollective.com/fastify"
|
|
}
|
|
],
|
|
"devDependencies": {
|
|
"@jsumners/line-reporter": "^1.0.1",
|
|
"@types/node": "^25.0.3",
|
|
"borp": "^0.21.0",
|
|
"c8": "^10.1.3",
|
|
"eslint": "^9.17.0",
|
|
"neostandard": "^0.12.0",
|
|
"typescript": "~5.9.2"
|
|
},
|
|
"dependencies": {
|
|
"@fastify/error": "^4.0.0",
|
|
"fastq": "^1.17.1"
|
|
}
|
|
}
|