-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.68 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
{
"name": "redux-action-chain-hor",
"version": "1.0.6",
"description": "Higher-order reducer which makes possible dispatching an array of actions at once.",
"main": "dist/redux-action-chain-hor.cjs.js",
"module": "dist/redux-action-chain-hor.esm.js",
"files": [
"dist",
"typings"
],
"types": "./typings/index.d.ts",
"scripts": {
"prepublishOnly": "npm run build",
"build": "run-p build:*",
"build:bundles": "rollup --config rollup.config.js",
"build:typings": "tsc --declaration --emitDeclarationOnly --noEmitOnError --declarationDir typings",
"prettier": "prettier --write \"**/*.{ts,tsx,js,jsx,css,md,yml}\"",
"test:typecheck": "tsc --noEmit",
"test:sources": "jest --coverage",
"test:sources:watch": "jest --watch",
"test": "run-p test:*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bhovhannes/redux-action-chain-hor.git"
},
"keywords": [
"redux",
"higher-order reducer",
"chain",
"actions"
],
"author": "Hovhannes Babayan <bhovhannes@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bhovhannes/redux-action-chain-hor/issues"
},
"homepage": "https://github.com/bhovhannes/redux-action-chain-hor#readme",
"devDependencies": {
"@evilmartians/lefthook": "1.9.2",
"@bhovhannes/shared-config": "0.0.1",
"@commitlint/cli": "19.6.0",
"@rollup/plugin-typescript": "12.1.1",
"@types/jest": "29.5.14",
"jest": "29.7.0",
"npm-run-all2": "7.0.1",
"prettier": "3.4.2",
"redux": "4.2.1",
"rollup": "4.28.1",
"ts-jest": "29.2.5",
"tslib": "2.8.0",
"typescript": "5.5.4"
},
"peerDependencies": {
"redux": "^4.0.1"
}
}