forked from h2qutc/angular-material-components
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
134 lines (134 loc) · 4.08 KB
/
package.json
File metadata and controls
134 lines (134 loc) · 4.08 KB
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
134
{
"name": "@ngxmc/amc",
"version": "20.1.0",
"description": "Angular Material Datetime Picker",
"author": "HO Hong Quan",
"repository": {
"type": "git",
"url": "git+https://github.com/GNURub/angular-material-components.git"
},
"bugs": {
"url": "https://github.com/GNURub/angular-material-components/issues"
},
"homepage": "https://github.com/GNURub/angular-material-components",
"keywords": [
"angular",
"angular2",
"angular 12",
"angular 13",
"angular 14",
"angular 15",
"angular 16",
"angular 17",
"angular 18",
"angular 19",
"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:gh-pages": "ng build -c=production --base-href /angular-material-components/",
"deploy:gh-pages": "npm run build:gh-pages && npx angular-cli-ghpages --dir=dist/angular-material-components/browser --repo=git@github.com:GNURub/angular-material-components.git",
"prettier:fix": "prettier --write projects/**/*.ts",
"prepare": "npm run prettier:fix",
"build:datetime-picker": "ng build NgxMatDatetimePicker",
"build:color-picker": "ng build NgxMatColorPicker",
"build:file-input": "ng build NgxMatFileInput",
"publish:datetime-picker": "ng build NgxMatDatetimePicker && cd dist/@ngxmc/datetime-picker && npm publish --access public && cd .. && cd .. && cd ..",
"publish:color-picker": "ng build NgxMatColorPicker && cd dist/@ngxmc/color-picker && npm publish --access public && cd .. && cd .. && cd ..",
"publish:file-input": "ng build NgxMatFileInput && cd dist/@ngxmc/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://gnurub.github.io/angular-material-components/"
},
"private": false,
"dependencies": {
"@angular/animations": "^20.1.4",
"@angular/common": "^20.1.4",
"@angular/compiler": "^20.1.4",
"@angular/core": "^20.1.4",
"@angular/forms": "^20.1.4",
"@angular/material": "^20.1.4",
"@angular/platform-browser": "^20.1.4",
"@angular/platform-browser-dynamic": "^20.1.4",
"@angular/router": "^20.1.4",
"@types/highlight.js": "^10.1.0",
"highlight.js": "^11.11.1",
"rxjs": "~7.8.2",
"zone.js": "~0.15.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^20.1.4",
"@angular/cdk": "^20.1.4",
"@angular/cli": "^20.1.4",
"@angular/compiler-cli": "^20.1.4",
"@types/jasmine": "~5.1.8",
"@types/jasminewd2": "~2.0.13",
"@types/node": "^24.1.0",
"angular-cli-ghpages": "^2.0.3",
"codecov": "^3.8.3",
"codelyzer": "^6.0.2",
"jasmine-core": "~5.9.0",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.4.4",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage-istanbul-reporter": "~3.0.3",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"ng-packagr": "^20.1.0",
"prettier": "^3.6.2",
"protractor": "~7.0.0",
"release-please": "^17.1.1",
"ts-node": "~10.9.2",
"tslib": "^2.8.1",
"tslint": "~6.1.3",
"typescript": "~5.8.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"
],
"main": "index.js",
"directories": {
"doc": "docs"
},
"packageManager": "pnpm@10.14.0"
}