-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.95 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
{
"name": "@kontent-ai/core-sdk-angular-http-service",
"version": "5.0.8",
"repository": {
"type": "git",
"url": "https://github.com/kontent-ai/core-sdk-angular-http-service"
},
"author": "richard sustek",
"license": "MIT",
"description": "Implementation of IHttpService using Angular HttpClient",
"keywords": [
"Kontent.ai Angular HTTP Client",
"Kontent.ai Angular ",
"Kontent.ai HTTP Client"
],
"private": false,
"scripts": {
"release": "standard-version",
"release:major": "npm run ts-lint:check && standard-version --release-as major",
"release:beta": "standard-version --prerelease",
"build:lib": "ng build kontent-angular-http-service",
"publish:lib": "npm run build:lib && npm publish ./dist --access public",
"publish:lib:beta": "npm run build:lib && npm publish ./dist --access public --tag=next",
"prepublishOnly": "node prevent-direct-publish",
"build:all": "npm run build:lib",
"test:all": "npm run build:lib",
"ts-lint:fix": "npm run ts-lint:check -- --fix",
"ts-lint:check": "tslint --project ./tsconfig.json"
},
"peerDependencies": {
"@angular/common": "^14.0.0",
"@angular/core": "^14.0.0",
"@kontent-ai/core-sdk": "^10.0.0",
"rxjs": "^7.5.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "17.3.8",
"@angular-devkit/build-ng-packagr": "0.1002.0",
"@angular/animations": "14.1.2",
"@angular/cli": "^14.2.13",
"@angular/common": "14.3.0",
"@angular/compiler": "14.1.2",
"@angular/compiler-cli": "14.1.2",
"@angular/core": "14.3.0",
"@angular/http": "7.2.16",
"@angular/platform-browser": "14.1.2",
"@angular/platform-browser-dynamic": "14.1.2",
"@kontent-ai/core-sdk": "^10.7.0",
"@types/node": "18.7.6",
"core-js": "3.24.1",
"ng-packagr": "14.1.0",
"rxjs": "7.8.1",
"standard-version": "9.5.0",
"tslib": "2.4.0",
"tslint": "6.1.3",
"typescript": "4.7.4",
"zone.js": "0.11.8"
}
}