-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
123 lines (123 loc) · 4.31 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
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
{
"name": "angular-calendar-scheduler",
"version": "18.0.2",
"license": "MIT",
"private": false,
"packageManager": "pnpm@7.11.0",
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"webpack",
"@angular-devkit/*"
]
}
},
"scripts": {
"ng": "ng",
"start": "ng serve --open",
"build": "ng build",
"build:prod": "ng build --configuration production",
"test": "ng test --watch=false",
"test:watch": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"clean": "rimraf dist",
"build:package": "ng-packagr -p ng-package.json",
"build:dist": "pnpm build:package && pnpm build:styles && pnpm copyfiles",
"build:styles": "sass lib/modules/scheduler/calendar-scheduler-view.component.scss | postcss --output dist/css/angular-calendar-scheduler.css",
"copyfiles": "copyfiles CHANGELOG.md dist && copyfiles -u 1 lib/modules/**/package.json dist && copyfiles -u 1 lib/**/*.scss dist/scss",
"release:git": "git add . package.json && git commit -m \"chore: bump version number\" && git push --follow-tags origin main",
"release:fix:patch": "git add . package.json && git commit -m \"fix: minor fix\" && git push --follow-tags origin main",
"release:feat:minor": "git add . package.json && git commit -m \"feat: new feature\" && git push --follow-tags origin main",
"release:fix:major": "git add . package.json && git commit -m \"fix!: breaking fix\" && git push --follow-tags origin main",
"release:feat:major": "git add . package.json && git commit -m \"feat!: breaking new feature\" && git push --follow-tags origin main",
"release:refactor:major": "git add . package.json && git commit -m \"refactor!: breaking refactor\" && git push --follow-tags origin main",
"release:npm": "npm run build:dist && npm publish dist",
"release:yarn": "yarn build:dist && yarn publish dist",
"release:pnpm": "pnpm build:dist && pnpm publish dist",
"release": "pnpm release:git && pnpm release:pnpm"
},
"repository": {
"type": "git",
"url": "git+https://github.com/michelebombardi/angular-calendar-scheduler.git"
},
"author": "Michele Bombardi (Montecavallo Solutions)",
"homepage": "https://github.com/michelebombardi/angular-calendar-scheduler",
"bugs": {
"url": "https://github.com/michelebombardi/angular-calendar-scheduler/issues"
},
"keywords": [
"montecavallo",
"mounthorse",
"calendar",
"week",
"angular",
"scheduler",
"events",
"angular-calendar",
"angular-calendar-scheduler",
"angular-scheduler",
"angular-calendar-week-hours-view",
"week-hours-view",
"schematics"
],
"devDependencies": {
"@angular-devkit/build-angular": "^18.1.4",
"@angular/animations": "18.1.4",
"@angular/cdk": "18.1.4",
"@angular/cli": "18.1.4",
"@angular/common": "18.1.4",
"@angular/compiler": "18.1.4",
"@angular/compiler-cli": "18.1.4",
"@angular/core": "18.1.4",
"@angular/forms": "18.1.4",
"@angular/language-service": "18.1.4",
"@angular/localize": "18.1.4",
"@angular/material": "18.1.4",
"@angular/platform-browser": "18.1.4",
"@angular/platform-browser-dynamic": "18.1.4",
"@angular/router": "18.1.4",
"@popperjs/core": "^2.11.8",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "~2.0.8",
"@types/node": "^18.7.15",
"angular-calendar": "0.31.0",
"angular-draggable-droppable": "^7.0.0",
"angular-resizable-element": "^6.0.0",
"autoprefixer": "^9.0.0",
"bootstrap": "^5.3.3",
"calendar-utils": "0.10.4",
"codelyzer": "^6.0.2",
"copyfiles": "^2.1.1",
"core-js": "^3.6.1",
"date-fns": "^2.8.1",
"jasmine-core": "~4.6.0",
"jquery": "^3.5.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"moment": "^2.29.4",
"moment-es6": "^1.0.0",
"moment-timezone": "^0.5.37",
"ng-packagr": "18.1.0",
"node-sass": "8.0.0",
"postcss-cli": "^6.1.3",
"postcss-flexibility": "^2.0.0",
"rxjs": "^6.5.3",
"sass": "^1.32.5",
"ts-node": "~8.5.4",
"tslib": "^2.0.0",
"tslint": "~6.1.0",
"typescript": "5.4.2",
"zone.js": "~0.14.10"
},
"peerDependencies": {
"angular-calendar": "^0.31.0"
},
"sideEffects": [
"*.css",
"*.scss"
]
}