-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.48 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.48 KB
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
90
91
92
{
"name": "ng-http-caching",
"version": "22.5.0",
"description": "Cache for HTTP requests in Angular application.",
"repository": {
"type": "git",
"url": "git+https://github.com/nigrosimone/ng-http-caching.git"
},
"keywords": [
"angular",
"cache",
"interceptor",
"network",
"http",
"client",
"http-client",
"header",
"headers",
"interact",
"configuration"
],
"author": "Simone Nigro <nigro.simone@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nigrosimone/ng-http-caching/issues"
},
"homepage": "https://github.com/nigrosimone/ng-http-caching",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"test:ci": "ng test ng-http-caching --coverage --no-watch",
"format": "prettier --write .",
"format:check": "prettier --check .",
"release:bump": "node .github/scripts/release.mjs bump",
"release:notes": "node .github/scripts/release.mjs notes",
"prepare": "husky"
},
"dependencies": {
"@angular/common": "^22.0.0",
"@angular/compiler": "^22.0.0",
"@angular/core": "^22.0.0",
"@angular/forms": "^22.0.0",
"@angular/platform-browser": "^22.0.0",
"@angular/router": "^22.0.0",
"rxjs": "^7.8.2",
"tslib": "^2.8.1"
},
"peerDependencies": {
"ng-simple-state": ">=21.1.4"
},
"peerDependenciesMeta": {
"ng-simple-state": {
"optional": true
}
},
"devDependencies": {
"@angular-eslint/builder": "^22.0.0",
"@angular-eslint/eslint-plugin": "^22.0.0",
"@angular-eslint/eslint-plugin-template": "^22.0.0",
"@angular-eslint/schematics": "^22.0.0",
"@angular-eslint/template-parser": "^22.0.0",
"@angular/build": "^22.0.0",
"@angular/cli": "^22.0.0",
"@angular/compiler-cli": "^22.0.0",
"@eslint/js": "^10.0.1",
"@types/node": "^25.9.2",
"@typescript-eslint/eslint-plugin": "^8.60.1",
"@typescript-eslint/parser": "^8.60.1",
"@vitest/coverage-v8": "^4.1.10",
"angular-eslint": "^22.0.0",
"eslint": "^10.4.1",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.6.0",
"husky": "^9.1.7",
"jsdom": "^29.1.1",
"lint-staged": "^17.2.0",
"ng-packagr": "^22.0.0",
"ng-simple-state": "^22.1.0",
"prettier": "^3.9.5",
"typescript": "^6.0.3",
"vitest": "^4.0.8"
},
"engines": {
"node": "^22.22.3 || ^24.15.0 || >=26.0.0"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown"
}
}