UNPKG

@nivinjoseph/n-ject

Version:
55 lines (54 loc) 1.86 kB
{ "name": "@nivinjoseph/n-ject", "version": "3.0.2", "description": "IOC container", "packageManager": "yarn@4.0.2", "type": "module", "exports": "./dist/index.js", "types": "./dist/index.d.ts", "scripts": { "ts-compile": "tsc -p .", "ts-lint": "eslint . --ext .ts", "ts-build": "yarn ts-compile && yarn ts-lint", "ts-build-dist": "yarn ts-build && tsc -p ./dist", "test": "yarn ts-build && node --test --enable-source-maps ./test", "clean-src": "find ./src -name '*.js' -delete -o -name '*.map' -delete", "clean-test": "find ./test -name '*.js' -delete -o -name '*.map' -delete", "publish-package": "yarn ts-build-dist && git add . && git commit -m 'preparing to publish new version' && npm version patch && git push && npm publish --access=public" }, "repository": { "type": "git", "url": "git+https://github.com/nivinjoseph/n-ject.git" }, "keywords": [ "IOC", "inversion of control", "DI", "dependency injection" ], "author": "NiviN", "license": "MIT", "bugs": { "url": "https://github.com/nivinjoseph/n-ject/issues" }, "homepage": "https://github.com/nivinjoseph/n-ject#readme", "devDependencies": { "@types/node": "^20.10", "@typescript-eslint/eslint-plugin": "^6.15.0", "@typescript-eslint/parser": "^6.15.0", "eslint": "^8.56.0", "eslint-plugin-require-extensions": "^0.1.3", "typescript": "^5.3.3" }, "dependencies": { "@nivinjoseph/n-defensive": "^2.0.1", "@nivinjoseph/n-exception": "^2.0.1", "@nivinjoseph/n-ext": "^2.0.1", "@nivinjoseph/n-util": "^2.0.1", "tslib": "^2.6.2" }, "engineStrict": true, "engines": { "node": ">=20.10" } }