@fastify/awilix
Version:
Dependency injection support for fastify framework
69 lines (68 loc) • 1.68 kB
JSON
{
"name": "@fastify/awilix",
"version": "5.0.0",
"description": "Dependency injection support for fastify framework",
"license": "MIT",
"maintainers": [
{
"name": "Igor Savin",
"email": "kibertoad@gmail.com"
}
],
"main": "lib/index.js",
"type": "commonjs",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest --config=jest.config.json",
"test:coverage": "jest --config=jest.config.json --coverage",
"test:ci": "npm run lint && npm run test:typescript && npm run test:coverage",
"test:typescript": "tsd",
"lint": "eslint \"lib/**/*.js\" lib/index.js",
"lint:fix": "eslint --fix \"lib/**/*.js\" lib/index.js",
"prettier": "prettier --write \"{lib,test}/**/*.js\" lib/index.js lib/index.d.ts"
},
"dependencies": {
"awilix-manager": "^5.0.1",
"fastify-plugin": "^4.5.1"
},
"peerDependencies": {
"awilix": ">=9.0.0",
"fastify": "^4.0.0"
},
"devDependencies": {
"@types/node": "^20.8.6",
"awilix": "^10.0.1",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"fastify": "^4.24.2",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"tsd": "^0.30.0"
},
"homepage": "http://github.com/fastify/fastify-awilix",
"repository": {
"type": "git",
"url": "git://github.com/fastify/fastify-awilix.git"
},
"keywords": [
"fastify",
"plugin",
"di",
"dependency-injection",
"dependency",
"injection",
"inversion",
"control",
"awilix"
],
"files": [
"README.md",
"LICENSE",
"lib/*",
"!lib/index.test-d.ts"
],
"publishConfig": {
"access": "public"
}
}