@sinuos/nestjs-notification
Version:
NestJS notification based on channel
101 lines (100 loc) • 2.82 kB
JSON
{
"name": "@sinuos/nestjs-notification",
"version": "2.0.0",
"description": "NestJS notification based on channel",
"license": "MIT",
"keywords": [
"nest",
"nestjs",
"notify",
"broadcasting"
],
"scripts": {
"build": "rimraf -rf dist && tsc -p tsconfig.json",
"format": "prettier --write \"{lib,test}/**/*.ts\"",
"lint": "eslint 'lib/**/*.ts' --fix",
"test": "jest --force-exit --runInBand",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public",
"prepublish:next": "npm run build",
"publish:next": "npm publish --access public --tag next",
"test:e2e": "jest --config ./tests/jest-e2e.json --runInBand",
"prerelease": "npm run build"
},
"files": [
"dist/**/*",
"*.md",
"index.js",
"index.d.ts"
],
"peerDependencies": {
"@nestjs/common": "^7.0.0 || ^8.0.0",
"reflect-metadata": "^0.1.12",
"rxjs": "^6.0.0 || ^7.0.0"
},
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "15.0.0",
"@commitlint/config-angular": "15.0.0",
"@nestjs/common": "8.2.3",
"@nestjs/core": "8.2.3",
"@nestjs/platform-express": "8.2.3",
"@nestjs/testing": "8.2.3",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^27.0.3",
"@types/node": "16.11.12",
"@typescript-eslint/eslint-plugin": "5.6.0",
"@typescript-eslint/parser": "5.6.0",
"eslint": "8.4.1",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-prettier": "^4.0.0",
"husky": "7.0.4",
"jest": "^27.4.4",
"lint-staged": "12.1.2",
"prettier": "2.5.1",
"pretty-quick": "^3.1.2",
"reflect-metadata": "0.1.13",
"rimraf": "3.0.2",
"rxjs": "7.4.0",
"semantic-release": "^18.0.1",
"ts-jest": "^27.1.1",
"typescript": "4.5.3"
},
"lint-staged": {
"**/*": "pretty-quick --staged"
},
"author": {
"name": "Houssene Dao",
"email": "dao.houssene@gmail.com",
"url": "https://twitter.com/houssenedao"
},
"homepage": "https://github.com/sinuoslabs/nestjs-notification#readme",
"bugs": {
"url": "https://github.com/sinuoslabs/nestjs-notification/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/sinuoslabs/nestjs-notification"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "lib",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}