-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
114 lines (114 loc) · 3.39 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
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "layered-map-widget-plugin",
"version": "3.1.1",
"description": "Show markers on a layer basis. Create layers based on filter criteria.",
"scripts": {
"start": "c8ycli server",
"start:shell": "c8ycli server -p 9326 -u https://your-tenant.cumulocity.com/ --shell cockpit",
"build": "rimraf dist && c8ycli build",
"lint": "eslint . --ext js,ts --quiet",
"format": "eslint . --ext js,ts --quiet --fix",
"build:ci": "npm run build --ci",
"deploy": "c8ycli deploy -u https://your-tenant.cumulocity.com/",
"postinstall": "ngcc"
},
"keywords": [
"Cumulocity",
"Plugin",
"map",
"widget",
"leaflet",
"layered",
"WMS"
],
"private": true,
"workspaces": [
"lib/cumulocity-leaflet-wms-header"
],
"author": "Hendrik Naether",
"license": "Apache-2.0",
"dependencies": {
"@angular/animations": "14.0.6",
"@angular/cdk": "14.1.2",
"@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",
"@asymmetrik/ngx-leaflet": "^14.0.1",
"cumulocity-leaflet-wms-header": "0.0.1",
"@c8y/client": "1018.0.233",
"@c8y/ngx-components": "1018.0.233",
"@c8y/style": "1018.0.233",
"@ngx-translate/core": "14.0.0",
"jsoneditor": "^9.10.2",
"leaflet": "^1.9.4",
"moment": "^2.29.4",
"ngx-bootstrap": "9.0.0",
"rxjs": "~6.6.3",
"zone.js": "~0.11.7"
},
"devDependencies": {
"@angular-devkit/build-angular": "14.0.6",
"@angular-eslint/eslint-plugin-template": "^14.0.2",
"@angular-eslint/template-parser": "^14.0.2",
"@angular/compiler-cli": "14.0.6",
"@angular/language-service": "14.0.6",
"@angular/service-worker": "14.0.6",
"@angular/localize": "14.0.6",
"@c8y/cli": "1018.0.233",
"@types/jest": "^28.1.8",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"@types/leaflet": "^1.9.8",
"@types/lodash": "^4.14.194",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"html-loader": "4.1.0",
"jest": "^28.1.3",
"jest-preset-angular": "^12.2.0",
"prettier": "^2.7.1",
"typescript": "4.7.4"
},
"c8y": {
"application": {
"name": "Layered Map Plugin",
"description": "Show markers on a layer basis. Create layers based on filter criteria.",
"contextPath": "sag-ps-iot-pkg-layered-map-widget-plugin",
"key": "sag-ps-iot-pkg-layered-map-widget-key",
"globalTitle": "Layered Map widget plugin",
"tabsHorizontal": true,
"isPackage": true,
"noAppSwitcher": true,
"requiredPlatformVersion": "1018.0.233",
"package": "plugin",
"exports": [
{
"name": "Layered map widget plugin",
"module": "LayeredMapWidgetModule",
"path": "./layered-map-widget-plugin/layered-map-widget.module.ts",
"description": "Adds a custom map widget to the shell application"
}
],
"remotes": {
"widget-plugin": [
"LayeredMapWidgetModule"
]
},
"copy": [
{
"from": "docs",
"to": "docs"
}
]
},
"cli": {}
},
"browserslist": [
"last 2 major versions"
]
}