-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 2.06 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
{
"name": "redux-saga-try-catch",
"version": "4.0.7",
"author": "Garrett Dawson",
"description": "A saga utility to reduce flow control boilerplate",
"homepage": "https://github.com/killtheliterate/redux-saga-try-catch",
"license": "MIT",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/dts/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/killtheliterate/redux-saga-try-catch.git"
},
"bugs": {
"url": "https://github.com/killtheliterate/redux-saga-try-catch/issues"
},
"keywords": [
"redux-saga",
"redux"
],
"scripts": {
"build": "rm -rf dist && rollup -c && npx tsc -p tsconfig-dist.json",
"build:watch": "npx rollup -c --watch",
"prepublishOnly": "npm run build",
"prepush": "npm run util:lint",
"test": "npm run type-check && npm run test:unit",
"test:unit": "jest",
"type-check": "tsc -p ./tsconfig.json --noEmit",
"util:lint": "npx eslint . --ignore-pattern node_modules/ --ignore-pattern dist/"
},
"jest": {
"preset": "ts-jest"
},
"peerDependencies": {
"lodash": "^4.17.21",
"redux": "^4.0.1",
"redux-saga": "^1.0.3"
},
"devDependencies": {
"@babel/preset-typescript": "^7.17.12",
"@eslint/js": "^9.14.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-node-resolve": "^15.0.1",
"@types/eslint": "^8.4.3",
"@types/eslint__js": "^8.42.3",
"@types/estree": "^1.0.0",
"@types/jest": "^29.5.3",
"@types/lodash": "^4.14.182",
"@types/rollup-plugin-peer-deps-external": "^2.2.5",
"babel-core": "^6.26.3",
"babel-loader": "^9.1.0",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-macros": "^3.1.0",
"eslint": "^9.14.0",
"jest": "^29.6.1",
"lodash": "^4.17.21",
"prettier": "2.8.7",
"redux": "^4.0.5",
"redux-saga": "^1.1.3",
"rollup": "^4.18.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"semantic-release": "^24.2.0",
"ts-jest": "^29.1.1",
"typed-redux-saga": "^1.5.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0"
}
}