@eventstore.net/event.store
Version:
A simple and fast EventStore that support multiple persistence and notification providers
89 lines (88 loc) • 2.71 kB
JSON
{
"name": "@eventstore.net/event.store",
"version": "1.8.0",
"description": "A simple and fast EventStore that support multiple persistence and notification providers",
"author": "Thiago da Rosa de Bustamante <trbustamante@gmail.com>",
"license": "MIT",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"keywords": [
"EventStore",
"Event",
"event sourcing",
"eventsourcing",
"cqrs"
],
"scripts": {
"build": "npm run clean && tsc",
"clean": "rimraf dist",
"lint": "eslint ./src/**/*.ts ./test/**/*.spec.ts",
"lint:fix": "eslint --fix ./src/**/*.ts ./test/**/*.spec.ts -t verbose",
"postversion": "git push origin master",
"pretest": "cross-env NODE_ENV=test npm run build && npm run lint",
"test": "npm run test:unit && npm run test:integration",
"test:integration": "cross-env NODE_ENV=test jest --config ./test/jest.config-integration.js --forceExit",
"test:unit": "cross-env NODE_ENV=test jest --config ./test/jest.config-unit.js --coverage",
"test:mutation": "stryker run ./test/stryker.conf.js",
"stryker:init": "stryker init",
"tsc": "tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/thiagobustamante/node-eventstore"
},
"bugs": {
"url": "https://github.com/thiagobustamante/node-eventstore/issues"
},
"directories": {
"lib": "dist"
},
"engines": {
"node": ">=8.0.0"
},
"engineStrict": true,
"devDependencies": {
"@stryker-mutator/core": "^3.1.0",
"@stryker-mutator/html-reporter": "^3.1.0",
"@stryker-mutator/jest-runner": "^3.1.0",
"@stryker-mutator/typescript": "^3.1.0",
"@types/amqplib": "^0.5.13",
"@types/ioredis": "^3.2.24",
"@types/jest": "^25.2.1",
"@types/joi": "^13.6.3",
"@types/lodash": "^4.14.150",
"@types/mongodb": "^3.5.16",
"@types/mysql": "^2.15.10",
"@typescript-eslint/eslint-plugin": "^2.32.0",
"@typescript-eslint/parser": "^2.32.0",
"codecov": "^3.6.5",
"cross-env": "^5.2.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jsdoc": "^24.0.6",
"eslint-plugin-prefer-arrow": "^1.2.1",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^25.5.4",
"prettier": "^2.0.5",
"rimraf": "^2.7.1",
"source-map-support": "^0.5.19",
"test-wait": "^1.1.3",
"ts-jest": "^25.5.1",
"ts-loader": "^5.3.3",
"ts-node": "^8.6.2",
"typescript": "^3.8.3"
},
"dependencies": {
"joi": "^13.7.0",
"lodash": "^4.17.15"
},
"optionalDependencies": {
"amqplib": "^0.5.3",
"ioredis": "^4.6.2",
"mongodb": "^3.1.13",
"mysql": "^2.16.0"
},
"publishConfig": {
"access": "public"
}
}