-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.58 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
{
"name": "@alexfriesen/ngx-mat-timepicker",
"version": "19.0.1",
"license": "MIT",
"private": true,
"description": "ngx-mat-timepicker is an Angular material 17+ extension to add time pickers!",
"homepage": "https://alexfriesen.github.io/ngx-mat-timepicker",
"repository": {
"type": "git",
"url": "https://github.com/alexfriesen/ngx-mat-timepicker"
},
"bugs": {
"url": "https://github.com/alexfriesen/ngx-mat-timepicker/issues"
},
"keywords": [
"Angular 19+",
"Material timepicker",
"Timepicker",
"Android timepicker",
"Mobile timepicker",
"Time picker"
],
"scripts": {
"ng": "ng",
"start": "ng serve",
"test": "jest",
"test:lib": "jest --projects ./projects/ngx-mat-timepicker",
"test:demo": "jest --projects ./projects/demo",
"build": "ng build ngx-mat-timepicker --configuration=production",
"build:demo": "ng build demo --configuration=production",
"build:demo:gh-pages": "npm run build:demo -- --base-href /ngx-mat-timepicker/",
"link": "npm link ./dist/ngx-mat-timepicker",
"publish": "npm publish ./dist/ngx-mat-timepicker --access=public",
"publish:beta": "npm publish ./dist/ngx-mat-timepicker --tag beta --access=public",
"lint": "ng lint",
"e2e": "ng e2e"
},
"dependencies": {
"@angular/animations": "^19.0.0",
"@angular/cdk": "^19.0.0",
"@angular/common": "^19.0.0",
"@angular/compiler": "^19.0.0",
"@angular/core": "^19.0.0",
"@angular/forms": "^19.0.0",
"@angular/material": "^19.0.0",
"@angular/platform-browser": "^19.0.0",
"@angular/platform-browser-dynamic": "^19.0.0",
"@angular/platform-server": "^19.0.0",
"@angular/router": "^19.0.0",
"@angular/ssr": "^19.0.1",
"luxon": "^3.4.4",
"rxjs": "^7.4.0",
"tslib": "^2.5.2",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.0.1",
"@angular/build": "^19.0.1",
"@angular/cli": "^19.0.1",
"@angular/compiler-cli": "^19.0.0",
"@angular/language-service": "^19.0.0",
"@fontsource/material-icons": "^5.0.7",
"@fontsource/roboto": "^5.0.8",
"@types/jest": "^29.5.10",
"@types/luxon": "^3.3.6",
"@types/node": "^18.0.0",
"@types/prismjs": "^1.26.0",
"angular-eslint": "^19.0.0",
"eslint": "^9.3.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-preset-angular": "^14.0.0",
"ng-packagr": "^19.0.0",
"prettier": "^3.1.0",
"prismjs": "^1.29.0",
"ts-jest": "^29.1.1",
"ts-node": "~10.9.1",
"typescript": "~5.6.3"
},
"engines": {
"node": ">=18.19.0"
}
}