forked from TECH-Rubicone/redux-saga-controller
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.76 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "redux-saga-controller",
"version": "0.3.1",
"description": "A tool to simplify work with react, redux and redux-saga",
"license": "MIT",
"main": "lib/index.js",
"module": "es/index.js",
"modules.root": "es",
"jsnext:main": "es/index.js",
"types": "types/index.d.ts",
"files": [
"lib",
"es",
"src",
"types"
],
"scripts": {
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"editorconfig:checker": "editorconfig-checker --exclude '.git|node_modules|dist|lib|es|types'",
"test": "echo \"Info: no test specified\"",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"build": "rollup -c",
"start": "rollup -c -w",
"clean": "rimraf lib dist es types coverage",
"check:types": "npm run install:peers && tsc --noEmit",
"install:peers": "install-peers -f",
"check:code": "npm run editorconfig:checker && npm run check:types && npm run lint && npm test",
"prepublishOnly": "npm run clean && npm run check:code && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TECH-Rubicone/redux-saga-controller.git"
},
"keywords": [
"redux",
"react",
"controller",
"redux-saga",
"typescript",
"redux-saga-controller"
],
"author": "Tech Rubicone <[email protected]>",
"bugs": {
"url": "https://github.com/TECH-Rubicone/redux-saga-controller/issues"
},
"homepage": "https://github.com/TECH-Rubicone/redux-saga-controller#readme",
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-transform-runtime": "^7.12.1",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-node-resolve": "^10.0.0",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.7",
"@typescript-eslint/eslint-plugin": "^4.8.0",
"@typescript-eslint/parser": "^4.8.0",
"babel-loader": "^8.2.1",
"editorconfig-checker": "^3.3.0",
"eslint": "^7.13.0",
"eslint-plugin-import": "^2.22.1",
"husky": "^4.3.0",
"install-peers-cli": "^2.2.0",
"jest": "^26.6.3",
"node-sass": "^5.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.33.3",
"rollup-plugin-typescript2": "^0.29.0",
"ts-jest": "^26.4.4",
"ts-loader": "^8.0.11",
"ts-node": "^9.0.0",
"typescript": "^4.1.2"
},
"dependencies": {
"@babel/runtime": "^7.12.5"
},
"peerDependencies": {
"@types/react": ">= 16.8 < 18",
"@types/react-redux": "7.x",
"@types/redux": ">= 3 < 5",
"react": ">= 16.8 < 18",
"react-dom": ">= 16.8 < 18",
"react-redux": "7.x",
"redux": ">= 3 < 5",
"redux-saga": "1.x"
},
"peerDependenciesMeta": {
"immutable": {
"optional": true
}
},
"jest": {
"testRegex": "(/test/.*\\.spec\\.[tj]s)$",
"coverageProvider": "v8"
},
"sideEffects": false
}