forked from lagoshny/ngx-hateoas-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.44 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
{
"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": "ng build --configuration production",
"build-publish": "npm run test-flow && npm run build-prod && cd dist/ngx-hateoas-client && npm publish --tag latest",
"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": "~13.1.1",
"@angular/common": "~13.1.1",
"@angular/compiler": "~13.1.1",
"@angular/core": "~13.1.1",
"@angular/forms": "~13.1.1",
"@angular/platform-browser": "~13.1.1",
"@angular/platform-browser-dynamic": "~13.1.1",
"@angular/router": "~13.1.1",
"rxjs": "~6.6.3",
"tslib": "^2.1.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~13.1.2",
"@angular-devkit/build-ng-packagr": "~0.1002.0",
"@angular/cli": "~13.1.2",
"@angular/compiler-cli": "~13.1.1",
"@types/jasmine": "~3.6.3",
"@types/jasminewd2": "~2.0.8",
"@types/lodash-es": "^4.17.5",
"@types/node": "^14.14.25",
"codelyzer": "^6.0.1",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~6.3.16",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~2.1.0",
"karma-jasmine": "~3.0.1",
"karma-jasmine-html-reporter": "^1.4.2",
"lodash-es": "^4.17.21",
"ng-packagr": "^13.1.2",
"protractor": "~7.0.0",
"ts-node": "~9.1.1",
"tslint": "~6.1.3",
"typescript": "~4.5.4",
"uri-templates-es": "^1.0.0"
},
"keywords": [
"Spring Data Rest",
"Spring",
"HAL",
"hypermedia",
"REST",
"Angular 12",
"Angular 13",
"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"
}
}