-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
102 lines (102 loc) · 2.97 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
93
94
95
96
97
98
99
100
101
102
{
"name": "cumulocity-data-points-map-widget-plugin",
"version": "1.1.1",
"description": "This is the Cumulocity module federation plugin. This plugin help you to display measurements and device locations on map.",
"scripts": {
"start": "c8ycli server ",
"build": "c8ycli build --env.mode=production",
"deploy": "c8ycli deploy",
"postinstall": "ngcc",
"prebuild": " gulp clean",
"postbuild": " gulp bundle"
},
"keywords": [
"Cumulocity",
"Plugin",
"Widget"
],
"author": "Darpankumar Lalani - Software AG, Global Presales",
"license": "Apache-2.0",
"dependencies": {
"@angular/animations": "14.0.6",
"@angular/common": "14.0.6",
"@angular/compiler": "14.0.6",
"@angular/core": "14.0.6",
"@angular/forms": "14.0.6",
"@angular/platform-browser": "14.0.6",
"@angular/platform-browser-dynamic": "14.0.6",
"@angular/router": "14.0.6",
"@angular/upgrade": "14.0.6",
"@c8y/client": "1016.0.170",
"@c8y/ngx-components": "1016.0.170",
"@c8y/style": "1016.0.170",
"@ngx-translate/core": "14.0.0",
"rxjs": "~6.6.3",
"zone.js": "~0.11.7",
"@angular/material": "14.0.6",
"@c8y/ng1-modules": "1016.0.170",
"leaflet-extra-markers": "^1.2.1",
"leaflet.markercluster": "^1.4.1",
"leaflet2": "npm:leaflet@1.7.1",
"fontawesome": "4.7.2",
"angular-resize-event": "^2.1.0",
"moment": "^2.26.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "14.0.6",
"@angular/cdk": "14.1.2",
"@angular/compiler-cli": "14.0.6",
"@angular/language-service": "14.0.6",
"@angular/service-worker": "14.0.6",
"@angular/localize": "14.0.6",
"@types/jest": "^28.1.6",
"file-loader": "^6.2.0",
"jest": "^28.1.3",
"jest-preset-angular": "^12.2.5",
"typescript": "4.7.4",
"@c8y/cli": "1016.0.170",
"gulp": "^4.0.2",
"gulp-zip": "^5.0.1",
"del": "^6.1.1"
},
"c8y": {
"application": {
"name": "Data Points Map Widget",
"contextPath": "sag-ps-pkg-datapoints-map",
"key": "sag-ps-pkg-datapoints-map-application-key",
"globalTitle": "Custom widget with Module Federation",
"tabsHorizontal": true,
"isPackage": true,
"noAppSwitcher": true,
"package": "plugin",
"requiredPlatformVersion": ">=1016.0.0",
"exports": [
{
"name": "Cumulocity Data Points Map Widget",
"module": "GpDataPointsMapModule",
"path": "./widget/gp-data-points-map.module.ts",
"description": "This plugin help you to display measurements and device locations on map."
}
],
"remotes": {
"sag-ps-pkg-datapoints-map": [
"GpDataPointsMapModule"
]
},
"copy": [
{
"from": "images/datapoint-map.jpg",
"to": "images/datapoint-map.jpg"
},
{
"from": "LICENSE",
"to": "LICENSE.txt"
}
]
},
"cli": {}
},
"browserslist": [
"last 2 major versions"
]
}