61 lines
1.5 KiB
JSON
61 lines
1.5 KiB
JSON
{
|
|||
|
|
"name": "@stevanfreeborn/netdi",
|
||
|
|
"version": "0.0.0",
|
||
|
|
"description": "A dependency injection library inspired by the .NET DI container.",
|
||
|
|
"main": "dist/index.js",
|
||
|
|
"scripts": {
|
||
|
|
"build": "tsc --project tsconfig.build.json",
|
||
|
|
"test": "vitest",
|
||
|
|
"test:ci": "vitest --run",
|
||
|
|
"test:coverage": "vitest --coverage",
|
||
|
|
"test:ui": "vitest --ui --api 9527",
|
||
|
|
"lint": "eslint . --ext .ts",
|
||
|
|
"lint:fix": "eslint . --ext .ts, --fix",
|
||
|
|
"format": "prettier --check .",
|
||
|
|
"format:fix": "prettier --write ."
|
||
|
|
},
|
||
|
|
"publishConfig": {
|
||
|
|
"access": "public"
|
||
|
|
},
|
||
|
|
"files": [
|
||
|
|
"dist",
|
||
|
|
"LICENSE.md",
|
||
|
|
"README.md",
|
||
|
|
"package.json"
|
||
|
|
],
|
||
|
|
"keywords": [
|
||
|
|
"dependency-injection",
|
||
|
|
"di",
|
||
|
|
"typescript",
|
||
|
|
"inversion-of-control",
|
||
|
|
"ioc"
|
||
|
|
],
|
||
|
|
"author": {
|
||
|
|
"name": "Stevan Freeborn",
|
||
|
|
"email": "stevan.freeborn@gmail.com",
|
||
|
|
"website": "https://stevanfreeborn.com"
|
||
|
|
},
|
||
|
|
"repository": {
|
||
|
|
"type": "git",
|
||
|
|
"url": "git+https://github.com/StevanFreeborn/netdi.git"
|
||
|
|
},
|
||
|
|
"homepage": "https://github.com/StevanFreeborn/netdi",
|
||
|
|
"bugs": {
|
||
|
|
"url": "https://github.com/StevanFreeborn/netdi/issues",
|
||
|
|
"email": "stevan.freeborn@gmail.com"
|
||
|
|
},
|
||
|
|
"license": "MIT",
|
||
|
|
"type": "module",
|
||
|
|
"devDependencies": {
|
||
|
|
"@types/node": "^22.15.17",
|
||
|
|
"@vitest/coverage-istanbul": "^3.1.3",
|
||
|
|
"@vitest/ui": "^3.1.3",
|
||
|
|
"eslint": "^9.26.0",
|
||
|
|
"globals": "^16.1.0",
|
||
|
|
"prettier": "^3.5.3",
|
||
|
|
"typescript": "^5.8.3",
|
||
|
|
"typescript-eslint": "^8.32.0",
|
||
|
|
"vitest": "^3.1.3"
|
||
|
|
}
|
||
|
|
}
|