-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
executable file
·89 lines (89 loc) · 2.03 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "ngrx-etc",
"version": "0.0.0-development",
"description": "Utilities for NgRx",
"keywords": [
"NgRx",
"Redux",
"Angular",
"Immer"
],
"author": "Tim Deschryver",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/timdeschryver/ngrx-etc.git"
},
"bugs": {
"url": "https://github.com/timdeschryver/ngrx-etc/issues"
},
"homepage": "https://github.com/timdeschryver/ngrx-etc#readme",
"private": false,
"source": "src/index.ts",
"main": "dist/ngrx-etc.js",
"umd:main": "dist/ngrx-etc.umd.js",
"unpkg": "dist/ngrx-etc.umd.js",
"types": "dist/index.d.ts",
"files": [
"package.json",
"README.md",
"dist"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "microbundle --output ./dist --external all",
"pretest": "eslint .",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"semantic-release": "semantic-release"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts}": [
"eslint --fix",
"git add"
],
"*.{json,md}": [
"prettier --write",
"git add"
]
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"@angular/core": ">=12.0.0",
"@ngrx/store": ">=12.0.0",
"@ngrx/effects": ">=12.0.0"
},
"dependencies": {
"immer": "^9.0.6",
"ngrx-immer": "^1.0.1"
},
"devDependencies": {
"@angular/core": "^12.0.0",
"@ngrx/effects": "^12.0.0",
"@ngrx/store": "^12.0.0",
"@types/jest": "^26.0.19",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"cpy-cli": "^3.1.1",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"jest": "^26.6.3",
"lint-staged": "^10.2.11",
"microbundle": "^0.12.3",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"semantic-release": "^17.3.0",
"ts-jest": "^26.4.4",
"typescript": "4.2.4"
}
}