-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.32 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
{
"name": "redux-saves",
"version": "1.0.0",
"description": "",
"main": "dist/redux-saves.cjs.min.js",
"module": "dist/redux-saves.esm.min.js",
"scripts": {
"test": "npx jest",
"build": "yarn build_cjs & yarn build_esm & yarn build_cjs_min & yarn build_esm_min",
"build_base": "npx esbuild src/index.ts --bundle --sourcemap '--define:process.env.NODE_ENV=\"production\"'",
"build_cjs": "yarn build_base --format=cjs --outfile=./dist/redux-saves.cjs.js",
"build_esm": "yarn build_base --format=esm --outfile=./dist/redux-saves.esm.js",
"build_cjs_min": "yarn build_cjs --minify --outfile=./dist/redux-saves.cjs.min.js",
"build_esm_min": "yarn build_esm --minify --outfile=./dist/redux-saves.esm.min.js"
},
"repository": "git+https://github.com/AStaroverov/redux-saves.git",
"author": "AStaroverov <hellbeast92@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/AStaroverov/redux-saves/issues"
},
"homepage": "https://github.com/AStaroverov/redux-saves#readme",
"peerDependencies": {
"@types/redux": "^3.6.0"
},
"devDependencies": {
"@types/jest": "^26.0.15",
"esbuild": "^0.8.22",
"jest": "^26.6.3",
"redux": "^4.0.5",
"redux-dynamic-modules-core": "^5.2.3",
"ts-jest": "^26.4.4",
"ts-node": "^9.0.0",
"typescript": "^4.1.2"
}
}