-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.85 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.85 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
{
"name": "@netwin/angular-datetime-picker",
"version": "21.0.0",
"description": "Angular Date Time Picker",
"packageManager": "npm@11.7.0",
"keywords": [
"Angular",
"datepicker",
"date picker",
"timepicker",
"time picker",
"datetime picker",
"date time picker",
"material",
"ngx"
],
"author": "Maintained and updated by Daniel Moncada, original implementation by Daniel Pan",
"license": "MIT",
"scripts": {
"start": "npm run start:docs",
"build": "npm run build:lib",
"test": "ng test picker",
"test:ci": "ng test picker --no-watch --no-progress --browsers=ChromeHeadless",
"lint": "ng lint --cache",
"start:docs": "ng serve docs",
"build:docs": "ng build docs",
"build:lib": "ng build picker && npm run minify:css && npm run copy:readme",
"minify:css": "lightningcss --minify --targets \">= 0.25%\" projects/picker/src/styles/picker.css -o dist/picker/assets/style/picker.min.css",
"copy:readme": "cp README.md dist/picker",
"prettier": "prettier --write !CHANGELOG.md \"**/*.{ts,html,css,md,json}\"",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "https://github.com/NetWin/date-time-picker.git"
},
"dependencies": {
"@angular/animations": "^21.0.6",
"@angular/cdk": "^21.0.5",
"@angular/common": "^21.0.6",
"@angular/compiler": "^21.0.6",
"@angular/core": "^21.0.6",
"@angular/forms": "^21.0.6",
"@angular/platform-browser": "^21.0.6",
"@angular/platform-browser-dynamic": "^21.0.6",
"@angular/router": "^21.0.6",
"@ng-doc/app": "^21.0.0",
"@ng-doc/builder": "^21.0.0",
"@ng-doc/core": "^21.0.0",
"@ng-doc/ui-kit": "^21.0.0",
"moment": "^2.30.1",
"rxjs": "^7.8.2",
"tslib": "^2.8.1",
"zone.js": "^0.16.0"
},
"devDependencies": {
"@angular/build": "^21.0.4",
"@angular/cli": "^21.0.4",
"@angular/compiler-cli": "^21.0.6",
"@angular/language-service": "^21.0.6",
"@commitlint/cli": "^20.3.0",
"@commitlint/config-angular": "^20.3.0",
"@commitlint/types": "^20.2.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"@stylistic/eslint-plugin": "^5.6.1",
"@types/jasmine": "~5.1.13",
"angular-eslint": "^21.1.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"jasmine-core": "~5.13.0",
"karma": "~6.4.4",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.1",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"lightningcss-cli": "^1.30.2",
"lint-staged": "^16.2.7",
"minify": "^15.0.0",
"ng-packagr": "^21.0.1",
"prettier": "^3.7.4",
"prettier-plugin-organize-imports": "^4.3.0",
"semantic-release": "^25.0.2",
"typescript": "~5.9.3",
"typescript-eslint": "^8.52.0"
}
}