forked from mattlewis92/angular-calendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
175 lines (175 loc) · 7.1 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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
{
"name": "angular-calendar",
"version": "0.29.0",
"description": "A calendar component for angular 12.0+ that can display events on a month, week or day view",
"funding": {
"url": "https://github.com/sponsors/mattlewis92"
},
"scripts": {
"node:memory": "cross-env NODE_OPTIONS=--max_old_space_size=8192",
"start": "npm run node:memory -- ng serve --open",
"build:copy-package-json": "copyfiles package.json projects/angular-calendar & copyfiles package.json projects/angular-calendar/schematics/ng-add",
"build:lib": "ng build angular-calendar --configuration production",
"build:date-adapters": "tsc -p tsconfig-date-adapters.json && tsc -p tsconfig-date-adapters.json --module es2015 --outDir ./dist/angular-calendar/date-adapters/esm",
"build:styles": "sass projects/angular-calendar/src/angular-calendar.scss | postcss --output dist/angular-calendar/css/angular-calendar.css",
"build:clean": "del-cli dist",
"build:schematics": "tsc projects/angular-calendar/schematics/ng-add/index.ts",
"build:copyfiles": "copyfiles CHANGELOG.md README.md LICENSE dist/angular-calendar & cp-cli projects/angular-calendar/util/date-adapter-package-date-fns.json dist/angular-calendar/date-adapters/date-fns/package.json & cp-cli projects/angular-calendar/util/date-adapter-package-moment.json dist/angular-calendar/date-adapters/moment/package.json & copyfiles -u 3 projects/angular-calendar/src/**/*.scss dist/angular-calendar/scss & npx copyfiles -u 2 \"projects/angular-calendar/schematics/**/*.{json,js}\" dist/angular-calendar",
"build": "run-s build:copy-package-json build:lib build:date-adapters build:styles build:schematics build:copyfiles",
"test:single": "cross-env TZ=UTC ng test angular-calendar --watch=false --code-coverage",
"test:watch": "cross-env TZ=UTC ng test angular-calendar",
"test:schematics": "cross-env TS_NODE_COMPILER_OPTIONS={\\\"module\\\":\\\"commonjs\\\"} TS_NODE_PREFER_TS_EXTS=true mocha --require ts-node/register projects/angular-calendar/schematics/**/*.spec.ts",
"test": "run-s lint test:single test:schematics build build:clean",
"lint:styles": "stylelint \"{projects,src}/**/*.scss\" --fix",
"lint:ts": "ng lint",
"lint": "run-s lint:ts lint:styles",
"commit": "git-cz",
"codecov": "codecov",
"prerelease": "npm test",
"pretest:schematics": "npm run build:copy-package-json",
"release:git-add": "git add package.json package-lock.json",
"release:git-commit": "git commit -m 'chore: bump version number'",
"release:git-changelog": "standard-version --first-release",
"release:git-push": "git push --follow-tags origin master",
"release:git": "run-s release:git-add release:git-commit release:git-changelog release:git-push",
"release:npm-publish": "npm publish dist/angular-calendar",
"release:npm": "run-s build release:npm-publish",
"release": "run-s release:git release:npm",
"postrelease": "npm run gh-pages",
"gh-pages:demos": "ng build --configuration production",
"gh-pages:compodoc": "compodoc -p tsconfig-compodoc.json -d dist/demos/docs --disableGraph --disableCoverage --disablePrivate --disableInternal --disableLifeCycleHooks --disableProtected --gaID UA-63367573-2",
"gh-pages:deploy": "ng deploy",
"gh-pages": "run-s build:clean gh-pages:demos gh-pages:compodoc gh-pages:deploy build:clean",
"prepare": "husky install"
},
"schematics": "./schematics/collection.json",
"config": {
"commitizen": {
"path": "@commitlint/prompt"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/mattlewis92/angular-calendar.git"
},
"keywords": [
"angular",
"angular2",
"calendar",
"schematics"
],
"author": "Matt Lewis",
"license": "MIT",
"bugs": {
"url": "https://github.com/mattlewis92/angular-calendar/issues"
},
"homepage": "https://github.com/mattlewis92/angular-calendar#readme",
"devDependencies": {
"@angular-devkit/build-angular": "^12.2.3",
"@angular-eslint/builder": "12.3.1",
"@angular-eslint/eslint-plugin": "12.3.1",
"@angular-eslint/eslint-plugin-template": "12.3.1",
"@angular-eslint/schematics": "12.3.1",
"@angular-eslint/template-parser": "12.3.1",
"@angular/animations": "^12.2.3",
"@angular/cdk": "^12.2.3",
"@angular/cli": "^12.2.3",
"@angular/common": "^12.2.3",
"@angular/compiler": "^12.2.3",
"@angular/compiler-cli": "^12.2.3",
"@angular/core": "^12.2.3",
"@angular/forms": "^12.2.3",
"@angular/language-service": "^12.2.3",
"@angular/localize": "^12.2.3",
"@angular/platform-browser": "^12.2.3",
"@angular/platform-browser-dynamic": "^12.2.3",
"@angular/router": "^12.2.3",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@commitlint/prompt": "^13.1.0",
"@compodoc/compodoc": "^1.1.14",
"@fortawesome/fontawesome-free": "^5.15.4",
"@ng-bootstrap/ng-bootstrap": "^10.0.0",
"@schematics/angular": "^12.2.3",
"@sinonjs/fake-timers": "^7.1.2",
"@stackblitz/sdk": "^1.5.2",
"@types/chai": "^4.2.21",
"@types/mocha": "^7.0.2",
"@types/node": "^16.7.9",
"@types/sinon": "^10.0.2",
"@types/sinon-chai": "^3.2.5",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"angular-cli-ghpages": "^1.0.0-rc.2",
"angulartics2": "^10.0.0",
"angularx-flatpickr": "^6.6.0",
"autoprefixer": "^10.3.3",
"bootstrap-css-only": "^4.4.1",
"chai": "^4.3.4",
"codecov": "^3.8.3",
"commitizen": "^4.2.4",
"copyfiles": "^2.4.1",
"core-js": "^3.16.4",
"cp-cli": "^2.0.0",
"cross-env": "^7.0.3",
"date-fns": "^2.23.0",
"dayjs": "^1.10.6",
"del-cli": "^4.0.1",
"eslint": "^7.26.0",
"flatpickr": "^4.6.9",
"highlightjs-loader": "^0.2.3",
"husky": "^7.0.0",
"karma": "~6.3.4",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "^2.0.3",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"mocha": "^7.2.0",
"moment": "^2.29.1",
"moment-timezone": "^0.5.33",
"ng-packagr": "^12.2.1",
"ngx-clipboard": "^14.0.1",
"ngx-contextmenu": "^6.0.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.6",
"postcss-cli": "^8.3.1",
"postcss-flexibility": "^3.0.0",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.1",
"process": "^0.11.10",
"raw-loader": "^4.0.2",
"rrule": "^2.6.8",
"rxjs": "^7.3.0",
"sass": "^1.38.2",
"sinon": "^11.1.2",
"sinon-chai": "^3.7.0",
"standard-version": "^9.3.1",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^22.0.0",
"ts-node": "^10.2.1",
"typescript": "~4.3.5",
"util": "^0.12.4",
"zone.js": "~0.11.4"
},
"peerDependencies": {
"@angular/core": ">=10.0.0"
},
"dependencies": {
"@scarf/scarf": "^1.1.1",
"angular-draggable-droppable": "^6.0.0",
"angular-resizable-element": "^5.0.0",
"calendar-utils": "^0.9.0",
"positioning": "^2.0.1",
"tslib": "^2.0.0"
},
"sideEffects": [
"*.css",
"*.scss"
]
}