curli-bus
Version:
Simple Command Bus Implementation (CQRS) for NodeJS/Typescript.
72 lines (71 loc) • 2.06 kB
JSON
{
"name": "curli-bus",
"version": "0.2.1",
"description": "Simple Command Bus Implementation (CQRS) for NodeJS/Typescript.",
"main": "index",
"scripts": {
"build:clean": "npm run clean && npm run build",
"build": "tsc",
"clean": "rimraf ./dist",
"test": "mocha -r ts-node/register src/__tests__/unit/*.test.ts",
"test:coverage": "nyc -r lcov -e .ts -x \"src/__tests__/unit/*.test.ts\" npm run test",
"lint": "eslint --ext \".js,.jsx,.ts,.tsx\" \"./src\"",
"lint:fix": "eslint --fix --ext \".js,.jsx,.ts,.tsx\" \"./src\"",
"npm:alone": "npm install && npm run clean && npm run build && npm run test:coverage",
"npm": "npm run npm:alone && npm publish",
"npm:beta": "npm run npm:alone && npm publish --tag beta"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CarlosCraviotto/curli-bus.git"
},
"keywords": [
"command bus",
"cqrs",
"command",
"bus",
"javascript",
"typescript",
"simple bus"
],
"engines": {
"node": ">= 6.0.0"
},
"files": [
"README.md",
"LICENSE",
".eslintrc.js",
".eslintignore",
"index.js",
"index.ts",
"dist",
"src",
"!*/__tests__"
],
"author": "Carlos Juan Craviotto",
"license": "MIT",
"bugs": {
"url": "https://github.com/CarlosCraviotto/curli-bus/issues"
},
"homepage": "https://github.com/CarlosCraviotto/curli-bus#readme",
"dependencies": {},
"devDependencies": {
"@types/mocha": "7.0.2",
"@types/node": "^13.11.0",
"@typescript-eslint/eslint-plugin": "^2.6.0",
"@typescript-eslint/parser": "^2.6.0",
"@types/chai": "^4.2.11",
"chai": "^4.2.0",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-mocha": "^6.3.0",
"nyc": "^15.0.0",
"coveralls": "^3.0.11",
"prettier": "^2.0.3",
"rimraf": "^3.0.0",
"mocha": "^7.1.1",
"ts-node": "^8.8.1",
"typescript": "^3.1.6"
}
}