This repository has been archived by the owner on Aug 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.78 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
{
"name": "nested-combine-reducers",
"version": "2.0.0",
"description": "Allows you to create your root reducer in one go, instead of individually combine slice reducers",
"type": "commonjs",
"main": "dist/cjs/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"pretest": "npm run clean:all && npm run build:test",
"test": "jest",
"clean:all": "npm run clean:build && npm run clean:codecov",
"clean:build": "rimraf dist/",
"clean:codecov": "rimraf codecov/",
"prebuild": "npm run clean:build",
"build": "npm run build:cjs && npm run build:esm",
"build:cjs": "tsc --project tsconfig.json --module commonjs --outDir dist/cjs",
"build:test": "tsc --project tsconfig.jest.json",
"build:esm": "tsc --project tsconfig.json --module es2020",
"postbuild": "renamer dist/* --find '*.js' --replace '.mjs'",
"prerelease": "npm run build",
"release": "np",
"prepack": "npm run build"
},
"repository": {
"url": "https://github.com/federico-paolillo/nested-combine-reducers.git",
"type": "git"
},
"keywords": [
"redux",
"utility",
"combine",
"reducers",
"nested",
"deep",
"combineReducers"
],
"author": "Federico Paolillo",
"license": "MIT",
"bugs": {
"url": "https://github.com/federico-paolillo/nested-combine-reducers/issues"
},
"homepage": "https://github.com/federico-paolillo/nested-combine-reducers#readme",
"devDependencies": {
"@types/jest": "^26.0.20",
"jest": "^26.6.3",
"np": "^7.2.0",
"redux": "^4.0.5",
"renamer": "^2.0.1",
"rimraf": "^3.0.2",
"typescript": "^4.1.3"
},
"peerDependencies": {
"redux": ">=4"
},
"files": [
"dist/"
],
"exports": {
".": "./dist/index.mjs",
"./cjs": "./dist/cjs/index.js"
}
}