UNPKG

@nodeboot/di

Version:

Dependency Injection plugin for Node-Boot

45 lines 1.01 kB
{ "name": "@nodeboot/di", "version": "1.2.4", "description": "Dependency Injection plugin for Node-Boot", "author": "Manuel Santos <ney.br.santos@gmail.com>", "license": "MIT", "keywords": [ "di", "typedi", "inversify" ], "repository": { "type": "git", "url": "https://github.com/nodejs-boot/node-boot.git" }, "publishConfig": { "access": "public" }, "main": "dist/index.js", "types": "dist/index.d.ts", "dependencies": { "@nodeboot/context": "1.10.0" }, "optionalDependencies": { "typedi": "^0.10.0", "inversify": "^6.0.1" }, "files": [ "dist", "package.json", "README.md", "config.d.ts" ], "scripts": { "build": "tsc -p tsconfig.build.json", "clean:build": "rimraf ./dist", "dev": "nodemon", "lint": "eslint . --ext .js,.ts", "lint:fix": "pnpm lint --fix", "format": "prettier --check .", "format:fix": "prettier --write .", "test": "jest --passWithNoTests", "typecheck": "tsc" } }