UNPKG

redux-sigma

Version:

A state machine library for redux and redux-saga.

74 lines (73 loc) 2.06 kB
{ "name": "redux-sigma", "version": "0.8.0-beta.3", "description": "A state machine library for redux and redux-saga.", "contributors": [ "Fabrizio Cavaniglia <fabrizio.cavaniglia@moveax.it>", "Furio Dipoppa <furio.dipoppa@moveax.it>", "Gabrio Tognozzi <gabrio.tognozzi@moveax.it>", "Michelle Laurenti <michelle.laurenti@moveax.it>" ], "homepage": "https://github.com/moveaxlab/redux-sigma", "license": "MIT", "main": "./lib/index.js", "module": "./lib/index.es.js", "types": "./types/index.d.ts", "directories": { "lib": "src" }, "repository": { "type": "git", "url": "git+https://github.com/moveaxlab/redux-sigma.git" }, "scripts": { "prepack": "yarn build", "build": "npm-run-all build:*", "build:clean": "rimraf lib types", "build:code": "rollup -c", "test": "npm-run-all test:*", "test:types": "tsc -p tsconfig.json", "test:lint": "yarn eslint --ext .ts src", "test:unit": "jest", "test:example": "npm-run-all test:example:*", "test:example:light": "ts-node ./example/light-typescript.ts", "test:example:full": "ts-node ./example/full-typescript.ts" }, "bugs": { "url": "https://github.com/moveaxlab/redux-sigma/issues" }, "devDependencies": { "@moveaxlab/eslint-config": "^0.4.0", "@moveaxlab/redux-saga-tester": "^2.0.4", "@types/jest": "^26.0.15", "@types/node": "^12.12.6", "coveralls": "^3.1.0", "eslint": "^6.8.0", "husky": "^4.3.0", "jest": "^26.6.3", "jest-extended": "^0.11.5", "npm-run-all": "^4.1.5", "redux": "^4.0.0", "redux-saga": "^1.1.0", "rollup": "^2.33.3", "rollup-plugin-auto-external": "^2.0.0", "rollup-plugin-ts": "^1.3.7", "ts-jest": "^26.4.4", "ts-node": "^8.3.0", "typescript": "^3.7.5", "wait-for-expect": "^3.0.1" }, "peerDependencies": { "redux": "^4.0.0", "redux-saga": "^1.1.0" }, "dependencies": { "immer": "^8.0.1" }, "keywords": [ "state machines", "redux", "redux-saga", "statecharts" ] }