-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.44 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
{
"name": "extend-saga-routines",
"version": "3.3.5",
"description": "Extend any routine with custom stages, create routine that has redux-saga-routines default stages and create routine with only yours custom stages.",
"main": "build/index.js",
"scripts": {
"test": "mocha --require @babel/register test",
"lint": "./node_modules/.bin/eslint",
"prebuild": "npm run test",
"build": "webpack",
"prepublishOnly": "npm run build"
},
"keywords": [
"redux",
"saga",
"redux-saga",
"redux-actions",
"actionCreator",
"routines",
"redux-saga-routines",
"extend-saga-routines",
"extend",
"createCustomRoutine",
"createExtendedRoutine",
"extendRoutine",
"fetch",
"socket"
],
"author": {
"name": "Yury Shapkarin",
"email": "yury@shapkarin.me",
"url": "https://shapkarin.me"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/shapkarin/extend-saga-routines.git"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.6",
"@babel/register": "^7.15.3",
"@babel/runtime": "^7.15.4",
"babel-loader": "^8.2.2",
"chai": "^4.3.4",
"eslint": "^7.32.0",
"mocha": "^9.1.1",
"redux-saga-routines": "^3.2.3",
"webpack": "^5.53.0",
"webpack-cli": "^4.8.0"
},
"peerDependencies": {
"redux-saga-routines": "^3.2.0"
}
}