-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.01 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "redux-sigma",
"version": "0.8.0-beta.3",
"description": "A state machine library for redux and redux-saga.",
"contributors": [
"Fabrizio Cavaniglia <[email protected]>",
"Furio Dipoppa <[email protected]>",
"Gabrio Tognozzi <[email protected]>",
"Michelle Laurenti <[email protected]>"
],
"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"
]
}