forked from DanielYKPan/date-time-picker
-
Notifications
You must be signed in to change notification settings - Fork 60
/
package.json
97 lines (97 loc) · 3.41 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
{
"name": "@danielmoncada/angular-datetime-picker",
"version": "18.1.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": {
"ng": "ng",
"start": "ng serve",
"build": "ng build picker",
"test": "ng test picker",
"test-with-coverage": "ng test --watch=false --no-progress --browsers=ChromeHeadlessNoSandbox --code-coverage=true picker",
"lint": "ng lint",
"e2e": "ng e2e",
"build_lib_onWindows": "ng build picker --configuration production && copy \"README.md\" \"dist/picker\"",
"build_lib_onLinux": "ng build picker --configuration production && cp README.md dist/picker",
"build_css_onWindows": "mkdir \"dist/picker/assets/style\" && sass --style=compressed projects/picker/src/sass/picker.scss > dist/picker/assets/style/picker.min.css",
"build_css_onLinux": "mkdir -p dist/picker/assets/style && sass --style=compressed projects/picker/src/sass/picker.scss > dist/picker/assets/style/picker.min.css",
"npm_pack": "cd dist/picker && npm pack",
"package_windows": "npm run build_lib_onWindows && npm run build_css_onWindows && npm run npm_pack",
"package_linux": "npm run build_lib_onLinux && npm run build_css_onLinux && npm run npm_pack"
},
"repository": {
"type": "git",
"url": "https://github.com/danielmoncada/date-time-picker.git"
},
"dependencies": {
"@angular/animations": "^18.0.1",
"@angular/cdk": "^18.0.1",
"@angular/common": "^18.0.1",
"@angular/compiler": "^18.0.1",
"@angular/core": "^18.0.1",
"@angular/forms": "^18.0.1",
"@angular/platform-browser": "^18.0.1",
"@angular/platform-browser-dynamic": "^18.0.1",
"@angular/router": "^18.0.1",
"core-js": "^3.37.1",
"moment": "^2.30.1",
"moment-timezone": "^0.5.45",
"np": "^10.0.5",
"rxjs": "^7.8.1",
"tslib": "^2.6.3",
"uuid": "^9.0.1",
"zone.js": "^0.14.6"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.0.6",
"@angular-eslint/builder": "18.0.1",
"@angular-eslint/eslint-plugin": "18.0.1",
"@angular-eslint/eslint-plugin-template": "18.0.1",
"@angular-eslint/schematics": "18.0.1",
"@angular-eslint/template-parser": "18.0.1",
"@angular/cli": "^18.0.2",
"@angular/compiler-cli": "^18.0.1",
"@angular/language-service": "^18.0.1",
"@types/jasmine": "^5.1.4",
"@types/jasminewd2": "^2.0.13",
"@types/node": "^20.14.2",
"@typescript-eslint/eslint-plugin": "7.11.0",
"@typescript-eslint/parser": "7.11.0",
"codecov": "^3.8.3",
"codelyzer": "^6.0.2",
"eslint": "8.57.0",
"jasmine-core": "~5.1.2",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.4.3",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.1",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"ng-packagr": "^18.0.0",
"protractor": "~7.0.0",
"sass": "^1.77.6",
"ts-node": "^10.9.2",
"typescript": "~5.4.5"
},
"overrides": {
"@lmdb/lmdb-darwin-arm64": "3.0.12"
},
"optionalDependencies": {
"@nx/nx-darwin-arm64": "19.3.2",
"@nx/nx-darwin-x64": "19.3.2",
"@nx/nx-linux-x64-gnu": "19.3.2",
"@nx/nx-win32-x64-msvc": "19.3.2"
}
}