This repository has been archived by the owner on Nov 7, 2024. It is now read-only.
forked from reubenmiller/cumulocity-device-enrolment-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
119 lines (119 loc) · 4.24 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
115
116
117
118
119
{
"name": "cumulocity-device-enrolment-widget-plugin",
"version": "1.0.0",
"description": "Device enrolment",
"author": "Reuben Miller - thin-edge.io",
"license": "Apache 2.0",
"scripts": {
"clean": "yarn clean:dist && yarn clean:node_modules",
"clean:dist": "rimraf dist packages/*/dist",
"clean:node_modules": "rimraf packages/*/node_modules modules/node_modules node_modules",
"start": "c8ycli server -u https://yourtenant.com --shell devicemanagement",
"build": "c8ycli build --env.mode=production",
"deploy": "c8ycli deploy",
"test": "jest",
"test:coverage": "jest --runInBand --coverage",
"postinstall": "ngcc",
"prebuild": " gulp clean",
"postbuild": " gulp bundle",
"lint": "eslint --ext .ts,.component.html ."
},
"keywords": [
"Cumulocity",
"Plugin",
"Widget"
],
"dependencies": {
"@angular/animations": "^15.2.7",
"@angular/cdk": "14.1.2",
"@angular/common": "^15.2.7",
"@angular/compiler": "^15.2.7",
"@angular/core": "^15.2.7",
"@angular/forms": "^15.2.7",
"@angular/material": "^14.2.7",
"@angular/platform-browser": "^15.2.7",
"@angular/platform-browser-dynamic": "^15.2.7",
"@angular/router": "^15.2.7",
"@angular/upgrade": "^15.2.7",
"@c8y/client": "1018.510.0",
"@c8y/ngx-components": "1018.510.0",
"@c8y/style": "1018.510.0",
"@ngui/sortable": "^0.4.1",
"@ngx-translate/core": "14.0.0",
"angular-resize-event": "^2.1.0",
"angular-ui-sortable": "^0.15.1",
"core-js": "^3.15.1",
"font-awesome": "^4.7.0",
"fontawesome": "4.7.2",
"ng2-search-filter": "^0.5.1",
"ngx-bootstrap": "9.0.0",
"rxjs": "~6.6.3",
"zone.js": "~0.11.7",
"leaflet": "1.7.1",
"autoprefixer": "^10.4.16"
},
"devDependencies": {
"@angular-devkit/build-angular": "^15.2.7",
"@angular/compiler-cli": "^15.2.7",
"@angular/language-service": "^15.2.7",
"@angular/localize": "^15.2.7",
"@angular/service-worker": "^15.2.7",
"@c8y/cli": "1018.510.0",
"@types/jest": "^28.1.6",
"del": "^6.1.1",
"gulp": "^4.0.2",
"gulp-replace": "^1.1.4",
"gulp-zip": "^5.0.1",
"html-loader": "4.1.0",
"jest": "^28.1.3",
"jest-preset-angular": "^12.2.0",
"typescript": "4.9.5",
"@angular-eslint/eslint-plugin": "16.1.0-alpha.0",
"@angular-eslint/eslint-plugin-template": "16.1.0-alpha.0",
"@angular-eslint/template-parser": "16.1.0-alpha.0",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"eslint": "^8.35.0",
"eslint-plugin-import": "2.27.5",
"jest-runner-eslint": "1.1.0"
},
"c8y": {
"application": {
"name": "Device enrolment widget",
"description": "Device enrolment widget",
"contextPath": "cumulocity-device-enrolment-widget",
"key": "cumulocity-device-enrolment-widget-application-key",
"globalTitle": "Device enrolment widget",
"tabsHorizontal": true,
"isPackage": true,
"noAppSwitcher": true,
"package": "plugin",
"requiredPlatformVersion": ">=1018.0.0",
"contentSecurityPolicy": "base-uri 'none'; default-src 'self' 'unsafe-inline' http: https: ws: wss: blob:; connect-src 'self' *.aptrinsic.com *.billwerk.com http: https: ws: wss: blob:; script-src 'self' open.mapquestapi.com *.twitter.com *.twimg.com *.aptrinsic.com 'unsafe-inline' 'unsafe-eval' data:; style-src * 'unsafe-inline' blob:; img-src * data: blob:; font-src * data:; frame-src *; worker-src 'self' blob:;",
"exports": [
{
"name": "Cumulocity Device Enrolement Stepper",
"module": "DeviceEnrolmentModule",
"path": "./widgets/device-enrolment-stepper/device-enrolment.module.ts",
"description": "Device enrolment stepper"
},
{
"name": "Cumulocity Device Enrolement Widget",
"module": "DeviceEnrolmentWidgetModule",
"path": "./widgets/device-enrolment-widget/device-enrolment-widget.module.ts",
"description": "Device enrolment widget"
}
],
"remotes": {
"cumulocity-device-enrolment-stepper": [
"DeviceEnrolmentModule",
"DeviceEnrolmentWidgetModule"
]
}
},
"cli": {}
},
"browserslist": [
"last 2 major versions"
]
}