UNPKG

class-injector

Version:

Crazy simple dependency injection for TypeScript

46 lines (45 loc) 1.11 kB
{ "name": "class-injector", "version": "1.6.0", "description": "Crazy simple dependency injection for TypeScript", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "build": "rimraf dist && tsc -p tsconfig.build.json", "check": "npm run check:ts && npm run check:docs", "check:ts": "tsc --noEmit", "check:docs": "doc-check", "test": "jest", "test:watch": "DIAGNOSTICS_EXCLUDE=** jest --watch" }, "repository": { "type": "git", "url": "git+https://github.com/bcheidemann/class-injector.git" }, "keywords": [ "TypeScript", "DI", "Dependency", "Injection" ], "author": "Ben Heidemann", "license": "ISC", "bugs": { "url": "https://github.com/bcheidemann/class-injector/issues" }, "homepage": "https://bcheidemann.github.io/class-injector/", "devDependencies": { "@types/jest": "^28.1.6", "jest": "^28.1.3", "rimraf": "^3.0.2", "ts-doc-check": "^1.3.0", "ts-jest": "^28.0.7", "typescript": "^4.7.4" }, "dependencies": { "reflect-metadata": "^0.1.13" }, "files": [ "dist" ] }