-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 3.06 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
{
"name": "@netwin/angular-datetime-picker",
"version": "19.0.0",
"description": "Angular Date Time Picker",
"keywords": [
"Angular",
"datepicker",
"date picker",
"timepicker",
"time picker",
"datetime picker",
"date time picker",
"material",
"ngx"
],
"author": "Maintained and updated by Daniel Moncada, original implementatiom 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:lib": "ng build picker",
"build:docs": "ng build docs",
"build:lib:windows": "ng build picker && copy \"README.md\" \"dist/picker\"",
"build:lib:linux": "ng build picker && cp README.md dist/picker",
"build:css:windows": "mkdir \"dist/picker/assets/style\" && sass --style=compressed projects/picker/src/sass/picker.scss > dist/picker/assets/style/picker.min.css",
"build:css:linux": "mkdir -p dist/picker/assets/style && sass --style=compressed projects/picker/src/sass/picker.scss > dist/picker/assets/style/picker.min.css",
"prettier": "prettier --cache --write \"projects/**/*.{ts,html,scss}\" \"src/**/*.{ts,html,scss}\"",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "https://github.com/NetWin/date-time-picker.git"
},
"dependencies": {
"@angular/animations": "^19.0.3",
"@angular/cdk": "^19.0.2",
"@angular/common": "^19.0.3",
"@angular/compiler": "^19.0.3",
"@angular/core": "^19.0.3",
"@angular/forms": "^19.0.3",
"@angular/platform-browser": "^19.0.3",
"@angular/platform-browser-dynamic": "^19.0.3",
"@angular/router": "^19.0.3",
"@ng-doc/app": "^19.0.0",
"@ng-doc/builder": "^19.0.0",
"@ng-doc/core": "^19.0.0",
"@ng-doc/ui-kit": "^19.0.0",
"moment": "^2.30.1",
"rxjs": "^7.8.1",
"tslib": "^2.8.1",
"zone.js": "^0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.0.4",
"@angular/cli": "^19.0.4",
"@angular/compiler-cli": "^19.0.3",
"@angular/language-service": "^19.0.3",
"@commitlint/cli": "^19.6.0",
"@commitlint/config-angular": "^19.6.0",
"@commitlint/types": "^19.5.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@stylistic/eslint-plugin": "^2.11.0",
"@types/jasmine": "~5.1.5",
"angular-eslint": "^19.0.1",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.7",
"jasmine-core": "~5.5.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",
"lint-staged": "^15.2.10",
"ng-packagr": "^19.0.1",
"prettier": "^3.4.2",
"prettier-plugin-organize-imports": "^4.1.0",
"sass": "^1.82.0",
"semantic-release": "^24.2.0",
"typescript": "~5.6.2",
"typescript-eslint": "^8.17.0"
}
}