-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.07 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
{
"name": "typescript-fsa-immer",
"version": "0.0.6",
"description": "typesafe redux reducers with 'immer' immutability in the box.",
"main": "dist/index.js",
"types": "dist/index",
"files": [
"dist/"
],
"keywords": [
"redux",
"immer",
"typescript",
"action",
"reducer"
],
"author": "Jurica Smirčić ([email protected])",
"repository": {
"type": "git",
"url": "https://github.com/jsmircic/typescript-fsa-immer.git"
},
"license": "MIT",
"scripts": {
"build": "yarn run clean && tsc -p tsconfig.json",
"clean": "rimraf dist/*",
"test": "jest"
},
"peerDependencies": {
"immer": "*",
"redux": "*",
"typescript-fsa": "*"
},
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@babel/preset-typescript": "^7.3.3",
"@types/redux": "^3.6.0",
"babel-jest": "^24.5.0",
"immer": "^2.1.4",
"jest": "^24.5.0",
"rimraf": "^2.6.3",
"typescript": "^3.4.1",
"typescript-fsa": "^3.0.0-beta-2"
},
"dependencies": {
"@types/jest": "^24.0.11"
}
}