forked from h2qutc/angular-material-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
133 lines (133 loc) · 4.3 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
127
128
129
130
131
132
133
{
"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/",
"release": "commit-and-tag-version"
},
"private": false,
"dependencies": {
"@angular/animations": "~17.3.2",
"@angular/cdk": "~17.3.2",
"@angular/common": "~17.3.2",
"@angular/compiler": "~17.3.2",
"@angular/core": "~17.3.2",
"@angular/forms": "~17.3.2",
"@angular/material": "~17.3.2",
"@angular/platform-browser": "~17.3.2",
"@angular/platform-browser-dynamic": "~17.3.2",
"@angular/router": "~17.3.2",
"core-js": "^3.36.1",
"highlight.js": "^11.7.0",
"moment": "^2.24.0",
"ngx-highlightjs": "^11.0.0-beta.1",
"rxjs": "^7.8.1",
"tslib": "^2.3.1",
"zone.js": "~0.14.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~17.3.2",
"@angular-eslint/builder": "17.3.0",
"@angular-eslint/eslint-plugin": "17.3.0",
"@angular-eslint/eslint-plugin-template": "17.3.0",
"@angular-eslint/schematics": "17.3.0",
"@angular-eslint/template-parser": "17.3.0",
"@angular/cli": "~17.3.2",
"@angular/compiler-cli": "~17.3.2",
"@angular/language-service": "~17.3.2",
"@types/jasmine": "^5.1.4",
"@types/jest": "^29.5.12",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.30",
"@typescript-eslint/eslint-plugin": "7.4.0",
"@typescript-eslint/parser": "7.4.0",
"commit-and-tag-version": "^12.2.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jasmine-core": "^5.1.2",
"karma": "^6.4.3",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"ng-packagr": "^17.3.0",
"prettier": "^3.2.5",
"protractor": "^7.0.0",
"typescript": "~5.4.3"
},
"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"
]
}