-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
92 lines (92 loc) · 2.99 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
90
91
92
{
"name": "ngx-hateoas-client",
"version": "0.0.0",
"description": "This client used to develop `Angular 12+` applications working with RESTfull server API with HAL/JSON response type (supports server implementation by Spring HATEOAS)",
"readme": "README.md",
"license": "MIT",
"author": "Ilya Lagoshny",
"scripts": {
"ng": "ng",
"build-prod-win": "ng build --configuration production && npm run copy-files-win",
"build-publish-win": "npm run test-flow && npm run build-prod-win && cd dist/ngx-hateoas-client && npm publish --tag latest",
"copy-files-win": "copy .\\README.md .\\CHANGELOG.md .\\dist\\ngx-hateoas-client\\",
"build-prod-linux": "ng build --configuration production && npm run copy-files-linux",
"build-publish-linux": "npm run test-flow && npm run build-prod-linux && cd dist/ngx-hateoas-client && npm publish --tag latest",
"copy-files-linux": "cp ./README.md ./CHANGELOG.md ./dist/ngx-hateoas-client/",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"test-flow": "ng test --browsers=ChromeHeadless --watch=false --progress=false",
"lint": "ng lint",
"e2e": "ng e2e"
},
"private": true,
"dependencies": {
"@angular/animations": "^19.0.1",
"@angular/common": "^19.0.1",
"@angular/compiler": "^19.0.1",
"@angular/core": "^19.0.1",
"@angular/forms": "^19.0.1",
"@angular/platform-browser": "^19.0.1",
"@angular/platform-browser-dynamic": "^19.0.1",
"@angular/router": "^19.0.1",
"rxjs": "~7.8.1",
"tslib": "^2.8.1",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.0.2",
"@angular-devkit/build-ng-packagr": "^0.1002.0",
"@angular/cli": "^19.0.2",
"@angular/compiler-cli": "^19.0.1",
"@types/jasmine": "~5.1.5",
"@types/jasminewd2": "~2.0.13",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.10.1",
"codelyzer": "^6.0.2",
"date-fns": "^4.1.0",
"jasmine-core": "~5.4.0",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.4.4",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage-istanbul-reporter": "~3.0.3",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"lodash-es": "^4.17.21",
"ng-packagr": "^19.0.1",
"protractor": "~7.0.0",
"ts-node": "~10.9.2",
"tslint": "~6.1.3",
"typescript": "~5.6.3",
"uri-templates-es": "^1.0.0"
},
"keywords": [
"Spring Data Rest",
"Spring",
"HAL",
"hypermedia",
"REST",
"Angular 12",
"Angular 13",
"Angular 14",
"Angular 15",
"Angular 16",
"Angular 17",
"Angular 18",
"Angular 19",
"ngx hal client",
"ngx hateoas client",
"hateoas client",
"Angular hateoas client",
"Spring HATEOAS",
"Angulat hal"
],
"homepage": "https://github.com/lagoshny/ngx-hateoas-client",
"issues": {
"url": "https://github.com/lagoshny/ngx-hateoas-client/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/lagoshny/ngx-hateoas-client"
}
}