-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
110 lines (110 loc) · 3.09 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
{
"name": "kaltura-ng",
"version": "0.0.0",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/kaltura/kaltura-ng.git"
},
"bugs": {
"url": "https://github.com/kaltura/kaltura-ng/issues"
},
"homepage": "https://github.com/kaltura/kaltura-ng#readme",
"description": "A set of packages providing common infrastructure for angular based applications connected to the Kaltura platform",
"contributors": [
{
"name": "Eran Sakal",
"email": "[email protected]"
},
{
"name": "Amir Chervinsky",
"email": "[email protected]"
}
],
"keywords": [
"kaltura"
],
"scripts": {
"ng": "ng",
"start": "ng serve",
"clean": "node ./scripts/clean.js",
"setup": "node ./scripts/setup.js",
"build": "node ./scripts/build.js",
"publish": "node ./scripts/publish.js",
"publish:continue": "node ./scripts/publish.js --continue",
"publish:abort": "node ./scripts/publish.js --abort",
"publish:ci": "node ./scripts/publish.js --ci",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e"
},
"author": {
"name": "Kaltura Community",
"email": "[email protected]"
},
"license": "AGPL-3.0",
"dependencies": {
"@angular/animations": "^11.1.1",
"@angular/cdk": "^9.2.1",
"@angular/common": "^11.1.1",
"@angular/compiler": "^11.1.1",
"@angular/core": "^11.1.1",
"@angular/forms": "^11.1.1",
"@angular/http": "^7.2.15",
"@angular/platform-browser": "^11.1.1",
"@angular/platform-browser-dynamic": "^11.1.1",
"@angular/router": "^11.1.1",
"@ngx-translate/core": "^13.0.0",
"@ngx-translate/http-loader": "^6.0.0",
"core-js": "^3.2.1",
"jquery": "^3.5.1",
"jsnlog": "^2.29.0",
"moment": "^2.24.0",
"normalize.css": "^7.0.0",
"primeng": "^11.2.0",
"rxjs": "^6.5.3",
"rxjs-compat": "^6.5.3",
"seamless-immutable": "^7.1.4",
"tslib": "^2.0.0",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.1101.2",
"@angular/cli": "^11.1.2",
"@angular/compiler-cli": "^11.1.1",
"@angular/language-service": "^11.1.1",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "^2.0.6",
"@types/node": "^12.11.1",
"argv": "0.0.2",
"codelyzer": "^6.0.0",
"conventional-changelog": "^2.0.3",
"conventional-recommended-bump": "^4.1.1",
"execa": "^0.10.0",
"inquirer": "^6.4.1",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~5.2.3",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"load-json-file": "^5.3.0",
"minimatch": "^3.0.4",
"ng-packagr": "^11.1.2",
"node-sass": "^4.12.0",
"npmlog": "^4.1.2",
"protractor": "~7.0.0",
"recursive-copy": "^2.0.10",
"slash": "^2.0.0",
"temp-write": "^3.4.0",
"ts-node": "~5.0.1",
"tslint": "^6.1.3",
"typescript": "^4.1.3",
"write-json-file": "^2.3.0"
},
"engines": {
"node": ">=8.9.1 <9.0.0",
"npm": ">= 5.0.0"
}
}