-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
89 lines (89 loc) · 2.71 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
{
"name": "raise-alarm",
"version": "1.0.11",
"description": "This widget allows to raise an alarm manually. The configuration allows to define: severity, alarm reason, and update behaviour.",
"scripts": {
"start": "c8ycli server",
"start:cockpit": "npm start -- --shell cockpit1017",
"build": "c8ycli build",
"build:ci": "npm run build -- --ci",
"deploy": "c8ycli deploy",
"postinstall": "ngcc"
},
"repository": {
"type": "git",
"url": "[email protected]:SoftwareAG/cumulocity-plugin-raise-alarm.git"
},
"keywords": [],
"author": "Christof Strack",
"license": "ISC",
"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",
"@c8y/client": "1016.0.264",
"@c8y/ngx-components": "1016.0.264",
"@c8y/style": "1016.0.264",
"@ngx-translate/core": "14.0.0",
"ngx-bootstrap": "^6.2.0",
"rxjs": "~6.6.3",
"zone.js": "~0.11.7"
},
"devDependencies": {
"@angular-devkit/build-angular": "14.0.6",
"@angular/compiler-cli": "14.0.6",
"@angular/language-service": "14.0.6",
"@angular/localize": "14.0.6",
"@angular/service-worker": "14.0.6",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@c8y/cli": "1016.0.264",
"@types/jest": "^28.1.6",
"jest": "^28.1.3",
"jest-preset-angular": "^12.2.0",
"typescript": "4.7.4"
},
"c8y": {
"application": {
"name": "Raise Alarm",
"description": "Widget to raise alarm",
"contextPath": "sag-ps-pkg-raise-alarm",
"key": "sag-ps-pkg-raise-alarm-application-key",
"globalTitle": "Widget to raise alarm",
"tabsHorizontal": true,
"isPackage": true,
"noAppSwitcher": true,
"package": "plugin",
"exports": [
{
"name": "Raise alarm plugin",
"module": "RaiseAlarmPluginModule",
"path": "./widget/raise-alarm-plugin.module.ts",
"description": "Widget to raise alarm"
}
],
"remotes": {
"widget-plugin": [
"RaiseAlarmPluginModule"
]
},
"copy": [
{ "from": "resources/images", "to": "resources/images" },
{ "from": "resources/images/raise-alarm-preview.png", "to": "c8y-widget-preview-img/raise-alarm-preview.png" },
{ "from": "README.md", "to": "README.md" }
]
},
"cli": {}
},
"browserslist": [
"last 2 major versions"
]
}