pub-sub-topic-ts
Version:
PubSub Library Typescript Implementation
55 lines (54 loc) • 1.39 kB
JSON
{
"name": "pub-sub-topic-ts",
"version": "0.1.1",
"description": "PubSub Library Typescript Implementation",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"clean": "rimraf dist",
"lint": "eslint --ignore-path .eslintignore --ext .js,.ts .",
"build": "npm run clean && tsc",
"format": "prettier --write \"src/**/*.ts\" \"dist/**/*.js\"",
"test": "jest --config jest.config.ts",
"prepare": "npm run build",
"prepublishOnly": "npm run build && npm run lint && npm run format"
},
"repository": {
"type": "git",
"url": "https://github.com/haricharank9/pub-sub-topic-ts.git"
},
"keywords": [
"PubSub",
"Design Patterns",
"Typescript",
"Javascript",
"Publish",
"Subscription",
"Topic"
],
"author": "HARI CHARAN K",
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/node": "^16.11.12",
"@types/uuid": "^8.3.3",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"jest": "^27.4.5",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.2",
"ts-node": "^10.4.0",
"tslib": "^2.3.1",
"typescript": "^4.5.3"
},
"dependencies": {
"uuid": "^8.3.2"
}
}