forked from timdeschryver/ngrx-immer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.34 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
{
"name": "ngrx-immer",
"version": "0.0.1",
"description": "Immer wrappers around NgRx methods createReducer, on, and ComponentStore",
"keywords": [
"NgRx",
"Redux",
"Angular",
"Immer"
],
"author": "Tim Deschryver",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/timdeschryver/ngrx-immer.git"
},
"bugs": {
"url": "https://github.com/timdeschryver/ngrx-immer/issues"
},
"homepage": "https://github.com/timdeschryver/ngrx-immer#readme",
"private": false,
"sideEffects": false,
"module": "shared.js",
"types": "shared.d.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "jest",
"prebuild": "rimraf dist && rimraf *.tgz",
"build": "tsc -p tsconfig-build.json",
"postbuild": "cpy **/package.json ../dist --cwd=./src --parents && cpy package.json dist && cpy README.md dist"
},
"peerDependencies": {
"immer": ">=7.0.0"
},
"peerDependenciesMeta": {
"@ngrx/component-store": {
"optional": true
},
"@ngrx/store": {
"optional": true
}
},
"devDependencies": {
"@angular/core": "^11.0.2",
"@ngrx/component-store": "^10.1.0",
"@ngrx/store": "^10.1.1",
"@types/jest": "^26.0.15",
"cpy-cli": "^3.1.1",
"immer": "^8.0.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"rxjs": "^6.6.3",
"ts-jest": "^26.4.4",
"typescript": "^4.1.2"
}
}