UNPKG

fact-streams

Version:

An event-sourcing toolkit for Node and MongoDB

48 lines (47 loc) 1.25 kB
{ "name": "fact-streams", "version": "0.3.0", "description": "An event-sourcing toolkit for Node and MongoDB", "keywords": [ "event-sourcing", "EventSourcing", "CQRS", "MongoDB" ], "author": "Yannis Drosidis <yannis@drosidis.com>", "license": "MIT", "main": "dist/index.js", "module": "dist/index.mjs", "types": "dist/index.d.ts", "files": [ "dist" ], "repository": { "type": "git", "url": "git@github.com:drosidis/fact-streams.git" }, "homepage": "https://github.com/drosidis/fact-streams", "scripts": { "build": "tsup src/index.ts --format cjs,esm --dts", "test": "ts-mocha test/**/*.test.ts", "test:watch": "ts-mocha --watch --watch-files 'src,test' test/**/*.test.ts", "lint": "tsc", "eslint": "eslint src/**/*.ts test/**/*.ts", "prepublishOnly": "npm run build" }, "dependencies": { "mongodb": "^6.9.0" }, "devDependencies": { "@types/chai": "^4.3.5", "@types/mocha": "^10.0.1", "@typescript-eslint/eslint-plugin": "^6.6.0", "@typescript-eslint/parser": "^6.6.0", "chai": "^4.3.8", "eslint": "^8.49.0", "mongodb-memory-server": "^8.15.1", "ts-mocha": "^10.0.0", "tsup": "^7.2.0", "typescript": "^5.2.2" } }