UNPKG

inversify

Version:

A powerful and lightweight inversion of control container for JavaScript and Node.js apps powered by TypeScript.

66 lines 1.73 kB
{ "author": "Remo H. Jansen", "bugs": { "url": "https://github.com/inversify/monorepo/issues" }, "description": "A powerful and lightweight inversion of control container for JavaScript and Node.js apps powered by TypeScript.", "dependencies": { "@inversifyjs/common": "2.0.1", "@inversifyjs/container": "2.0.1", "@inversifyjs/core": "10.0.1" }, "devDependencies": { "@types/node": "24.12.0", "@vitest/coverage-v8": "4.1.0", "eslint": "10.0.3", "prettier": "3.8.1", "reflect-metadata": "0.2.2", "rimraf": "6.1.3", "tslib": "2.8.1", "typescript": "5.9.3", "vitest": "4.1.0", "@inversifyjs/eslint-plugin-require-extensions": "0.2.0" }, "homepage": "https://inversify.io", "keywords": [ "dependency injection", "dependency inversion", "di", "inversion of control container", "ioc", "javascript", "node", "typescript" ], "devEngines": { "node": "^24.10.0", "pnpm": "^10.13.1" }, "license": "MIT", "exports": { ".": "./lib/index.js" }, "type": "module", "name": "inversify", "publishConfig": { "access": "public" }, "repository": { "type": "git", "url": "git+https://github.com/inversify/monorepo.git" }, "sideEffects": true, "version": "8.1.0", "scripts": { "build": "tsc", "build:clean": "rimraf lib", "format": "prettier --write ./src", "lint": "eslint ./src", "prebuild": "pnpm run build:clean", "test": "vitest run", "test:integration": "pnpm run test --project Integration", "test:coverage": "pnpm run test:unit --coverage", "test:uncommitted": "pnpm run test --changed=HEAD", "test:unit": "pnpm run test --project Unit" } }