-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.39 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
{
"name": "redux-taking-thunk",
"version": "1.0.0",
"description": "Redux thunk with take latest.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"type-check": "tsc --noEmit",
"test": "jest",
"build": "babel src -d dist --extensions .ts --ignore \"src/tests/*\" && tsc --emitDeclarationOnly",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run type-check",
"preversion": "npm test && npm run type-check",
"postversion": "git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/michaelyinopen/redux-taking-thunk.git"
},
"author": "Michael Yin",
"license": "MIT",
"bugs": {
"url": "https://github.com/michaelyinopen/redux-taking-thunk/issues"
},
"homepage": "https://github.com/michaelyinopen/redux-taking-thunk#readme",
"peerDependencies": {
"redux": "^4"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.16.4",
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@reduxjs/toolkit": "^1.7.0",
"@types/jest": "^27.0.3",
"jest": "^27.4.4",
"redux-thunk": "^2.4.1",
"typescript": "^4.5.3"
},
"browserslist": "> 0.25%, not dead",
"dependencies": {
"core-js": "^3.19.3",
"immer": "^9.0.7",
"nanoid": "^3.1.30"
},
"files": [
"dist/**/*"
]
}