UNPKG

event-storm

Version:
67 lines 1.76 kB
{ "name": "event-storm", "version": "5.0.14", "description": "In memory event store", "main": "./index.js", "license": "MIT", "types": "./types/index.d.ts", "author": "artur93gev", "scripts": { "test": "NODE_ENV='production' jest", "test:watch": "NODE_ENV='production' jest --watch", "bundle": "rollup -c", "lint": "eslint src/*.js", "build": "rimraf ./dist && yarn run bundle", "dispatch-lib": "yarn run build && cd dist && yarn publish" }, "devDependencies": { "@babel/core": "^7.12.10", "@babel/preset-env": "^7.12.11", "@commitlint/cli": "^11.0.0", "@commitlint/config-conventional": "^11.0.0", "@rollup/plugin-alias": "^3.1.2", "babel-jest": "^26.6.3", "cz-conventional-changelog": "^3.3.0", "eslint": "^7.18.0", "husky": "^4.3.8", "jest": "^26.6.3", "lint-staged": "^10.5.3", "rimraf": "^3.0.2", "rollup": "^2.38.0", "rollup-plugin-copy": "^3.3.0", "rollup-plugin-gzip": "^2.5.0", "rollup-plugin-node-resolve": "^5.2.0", "rollup-plugin-terser": "^7.0.2" }, "keywords": [ "event-store", "store-management" ], "repository": { "type": "git", "url": "git+https://github.com/event-storm/event-storm.git" }, "homepage": "https://github.com/event-storm/event-storm#readme", "bugs": { "url": "https://github.com/event-storm/event-storm/issues" }, "config": { "commitizen": { "path": "cz-conventional-changelog" } }, "lint-staged": { "*.js": [ "yarn run lint" ] }, "husky": { "hooks": { "pre-commit": "lint-staged && yarn run jest", "prepare-commit-msg": "exec < /dev/tty && git cz --hook || true" } }, "dependencies": { "immer": "^9.0.15" } }