-
Notifications
You must be signed in to change notification settings - Fork 162
/
package.json
126 lines (126 loc) · 3.93 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
120
121
122
123
124
125
126
{
"name": "angular-material-components",
"version": "16.0.1",
"description": "Angular Material Datetime Picker",
"author": "HO Hong Quan",
"repository": {
"type": "git",
"url": "https://github.com/h2qutc/angular-material-components.git"
},
"bugs": {
"url": "https://github.com/h2qutc/angular-material-components/issues"
},
"homepage": "https://github.com/h2qutc/angular-material-components",
"keywords": [
"angular",
"angular2",
"angular 12",
"angular 13",
"angular 14",
"angular 15",
"angular 16",
"angular-material",
"angular material datetime picker",
"angular material time picker",
"datetime-picker",
"datepicker",
"timepicker",
"ngx-mat",
"ngx-mat-datetime-picker",
"ngx-material-datetime-picker",
"ngx-mat-timepicker"
],
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build -c=production",
"build:datetime-picker": "ng build NgxMatDatetimePicker",
"build:moment-adapter": "ng build NgxMatMomentAdapter",
"build:color-picker": "ng build NgxMatColorPicker",
"build:file-input": "ng build NgxMatFileInput",
"publish:datetime-picker": "ng build NgxMatDatetimePicker && cd dist/@angular-material-components/datetime-picker && npm publish --access public && cd .. && cd .. && cd ..",
"publish:moment-adapter": "ng build NgxMatMomentAdapter && cd dist/@angular-material-components/moment-adapter && npm publish --access public && cd .. && cd .. && cd ..",
"publish:color-picker": "ng build NgxMatColorPicker && cd dist/@angular-material-components/color-picker && npm publish --access public && cd .. && cd .. && cd ..",
"publish:file-input": "ng build NgxMatFileInput && cd dist/@angular-material-components/file-input && npm publish --access public && cd .. && cd .. && cd ..",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"codecov": "codecov",
"build:ci": "ng build -c=production --output-path docs --base-href https://h2qutc.github.io/angular-material-components/"
},
"private": false,
"dependencies": {
"@angular/animations": "~15.0.2",
"@angular/cdk": "~15.0.1",
"@angular/common": "~15.0.2",
"@angular/compiler": "~15.0.2",
"@angular/core": "~15.0.2",
"@angular/forms": "~15.0.2",
"@angular/material": "~15.0.1",
"@angular/platform-browser": "~15.0.2",
"@angular/platform-browser-dynamic": "~15.0.2",
"@angular/router": "~15.0.2",
"@types/highlight.js": "^9.12.3",
"core-js": "^2.5.4",
"highlight.js": "^11.7.0",
"moment": "^2.24.0",
"ngx-highlightjs": "^4.1.1",
"rxjs": "~6.6.3",
"tslib": "^2.3.1",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~15.0.2",
"@angular/cli": "~15.0.2",
"@angular/compiler-cli": "~15.0.2",
"@angular/language-service": "~15.0.2",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^12.11.1",
"codecov": "^3.6.1",
"codelyzer": "^0.0.28",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~6.3.2",
"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",
"ng-packagr": "^15.0.1",
"protractor": "~7.0.0",
"ts-node": "~8.3.0",
"tsickle": "^0.39.1",
"tslint": "~6.1.0",
"typescript": "~4.8.4"
},
"browserslist": [
"and_chr 103",
"and_ff 101",
"and_qq 10.4",
"and_uc 12.12",
"chrome 103",
"chrome 102",
"chrome 101",
"edge 103",
"edge 102",
"firefox 102",
"firefox 101",
"firefox 91",
"ios_saf 15.5",
"ios_saf 15.4",
"ios_saf 15.2-15.3",
"ios_saf 14.5-14.8",
"ios_saf 14.0-14.4",
"ios_saf 12.2-12.5",
"kaios 2.5",
"op_mini all",
"opera 87",
"opera 86",
"opera 85",
"safari 15.5",
"safari 15.4",
"samsung 17.0",
"samsung 16.0"
]
}