-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.73 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
{
"name": "@tobias_brenner/resilient-http-client",
"version": "2.0.4",
"scripts": {
"ng": "ng",
"build": "ng build",
"test": "npx jest --silent",
"lint": "eslint --fix ./projects/resilient-http-client/src",
"prettier:check": "prettier --check './projects/resilient-http-client/src'",
"prettier:write": "prettier --write './projects/resilient-http-client/src'",
"doc": "yarn run doc:compodoc && yarn run copyDoc",
"doc:compodoc": "compodoc -p ./projects/resilient-http-client/tsconfig.lib.json -n resilient-http-client -d doc/code --hideGenerator --unitTestCoverage ./doc/test/coverage/coverage-summary.json --disableCoverage",
"copyDoc": "copyfiles -a './doc/**/*.*' ./dist/resilient-http-client/",
"copyNpmrc": "copyfiles './.npmrc' ./dist/resilient-http-client/",
"copyReleaseNotes": "copyfiles './RELEASE_NOTES.md' ./dist/resilient-http-client/"
},
"repository": {
"type": "git",
"url": "https://github.com/tobiasbrenner/resilient-http-service.git"
},
"bugs": {
"url": "https://github.com/tobiasbrenner/resilient-http-service/issues",
"email": "[email protected]"
},
"keywords": ["resilience", "http", "Angular", "HttpClient", "retry"],
"license": "MIT",
"private": false,
"dependencies": {
"@angular/animations": "^17.3.8",
"@angular/common": "^17.3.8",
"@angular/compiler": "^17.3.8",
"@angular/core": "^17.3.8",
"@angular/forms": "^17.3.8",
"@angular/platform-browser": "^17.3.8",
"@angular/platform-browser-dynamic": "^17.3.8",
"@angular/router": "^17.3.8",
"rxjs": "~7.8.1",
"tslib": "^2.6.2",
"zone.js": "~0.14.5"
},
"devDependencies": {
"@angular-builders/jest": "17.0.3",
"@angular-devkit/build-angular": "17.3.7",
"@angular-eslint/eslint-plugin": "17.4.0",
"@angular-eslint/eslint-plugin-template": "17.4.0",
"@angular-eslint/schematics": "17.4.0",
"@angular-eslint/template-parser": "17.4.0",
"@angular/cli": "^17.3.7",
"@angular/compiler-cli": "^17.3.8",
"@compodoc/compodoc": "1.1.24",
"@types/jasmine": "~5.1.4",
"@types/jest": "29.5.12",
"@types/uuid": "9.0.8",
"@typescript-eslint/eslint-plugin": "7.8.0",
"@typescript-eslint/parser": "7.8.0",
"copyfiles": "2.4.1",
"core-js": "3.37.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsdoc": "48.2.4",
"eslint-plugin-prefer-arrow": "1.2.3",
"jasmine-core": "5.1.2",
"jasmine-spec-reporter": "7.0.0",
"jest": "29.7.0",
"jest-diff": "29.7.0",
"jest-html-reporter": "3.10.2",
"jest-preset-angular": "14.0.4",
"ng-packagr": "^17.3.0",
"prettier": "3.2.5",
"typescript": "~5.4.5",
"uuid": "^9.0.1"
}
}