UNPKG

@nivinjoseph/n-domain

Version:

Domain Driven Design and Event Sourcing based framework for business layer implementation

56 lines (55 loc) 2.09 kB
{ "name": "@nivinjoseph/n-domain", "version": "3.0.2", "description": "Domain Driven Design and Event Sourcing based framework for business layer implementation", "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", "clean-dist": "find ./dist -name '*.js' -delete -o -name '*.map' -delete -o -name '*.ts' -delete", "clean-all": "yarn clean-src && yarn clean-test && yarn clean-dist", "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-domain.git" }, "keywords": [ "DDD", "Event", "Sourcing" ], "author": "NiviN", "license": "MIT", "bugs": { "url": "https://github.com/nivinjoseph/n-domain/issues" }, "homepage": "https://github.com/nivinjoseph/n-domain#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": "3.0.1", "ulid": "^2.3.0" }, "engineStrict": true, "engines": { "node": ">=20.10" } }