forked from michelebombardi/angular-calendar-scheduler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 3.61 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
{
"name": "angular-calendar-scheduler",
"version": "14.0.2",
"license": "MIT",
"private": false,
"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": "npm run build:package && npm run build:styles && npm run 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\" && standard-version --release-as patch && git push --follow-tags origin master",
"release:npm": "npm run build:dist && npm publish dist",
"release:yarn": "npm run build:dist && yarn publish dist",
"release": "npm run release:git && npm run release:yarn",
"postinstall": "ngcc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mounthorse-slns/angular-calendar-scheduler.git"
},
"author": "Michele Bombardi (Mounthorse Solutions)",
"homepage": "https://github.com/mounthorse-slns/angular-calendar-scheduler",
"bugs": {
"url": "https://github.com/mounthorse-slns/angular-calendar-scheduler/issues"
},
"keywords": [
"mounthorse",
"calendar",
"week",
"angular",
"scheduler",
"events",
"angular-calendar",
"angular-calendar-scheduler",
"angular-scheduler",
"angular-calendar-week-hours-view",
"week-hours-view",
"schematics"
],
"dependencies": {},
"devDependencies": {
"@angular-devkit/build-angular": "^14.1.1",
"@angular/animations": "^14.1.1",
"@angular/cdk": "14.1.1",
"@angular/cli": "^14.1.1",
"@angular/common": "^14.1.1",
"@angular/compiler": "^14.1.1",
"@angular/compiler-cli": "^14.1.1",
"@angular/core": "^14.1.1",
"@angular/forms": "^14.1.1",
"@angular/language-service": "^14.1.1",
"@angular/localize": "14.1.1",
"@angular/material": "14.1.1",
"@angular/platform-browser": "^14.1.1",
"@angular/platform-browser-dynamic": "^14.1.1",
"@angular/router": "^14.1.1",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "~2.0.8",
"@types/node": "^12.11.1",
"angular-calendar": "0.29.0",
"angular-draggable-droppable": "^6.0.0",
"angular-resizable-element": "^5.0.0",
"autoprefixer": "^9.0.0",
"bootstrap": "^5.2.0",
"codelyzer": "^6.0.0",
"copyfiles": "^2.1.1",
"core-js": "^3.6.1",
"date-fns": "^2.8.1",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"jquery": "^3.5.0",
"karma": "~6.3.16",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"moment": "^2.29.4",
"ng-packagr": "14.1.0",
"popper.js": "^1.16.0",
"postcss-cli": "^6.1.3",
"postcss-flexibility": "^2.0.0",
"protractor": "~7.0.0",
"rxjs": "^6.5.3",
"sass": "^1.32.5",
"standard-version": "^8.0.1",
"ts-node": "~8.5.4",
"tslib": "^2.0.0",
"tslint": "~6.1.0",
"typescript": "4.6.4",
"zone.js": "~0.11.4"
},
"peerDependencies": {
"angular-calendar": "^0.28.22",
"bootstrap": "^4.4.1",
"date-fns": "^2.8.1",
"moment": "^2.29.4"
},
"sideEffects": [
"*.css",
"*.scss"
]
}