forked from mattlewis92/angular-calendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
190 lines (190 loc) · 6.93 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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
{
"name": "angular-calendar",
"version": "0.23.7",
"description": "A calendar component for angular 5.0+ that can display events on a month, week or day view",
"scripts": {
"start": "webpack-dev-server --open",
"build:demos": "webpack --env=production",
"build:ngc": "ngc -p tsconfig-ngc.json",
"build:package": "ng-packagr -p package.json",
"build:dist": "npm run build:package && npm run build:ngc && npm run build:styles && npm run copyfiles",
"build:styles": "node-sass src/angular-calendar.scss | postcss --output dist/css/angular-calendar.css",
"build:clean": "rm -rf dist",
"test": "karma start --single-run && npm run build:dist && npm run build:clean",
"test:watch": "karma start --auto-watch",
"commit": "git-cz",
"compodoc": "compodoc -p tsconfig-compodoc.json -d docs --disableGraph --disableCoverage --disablePrivate --disableInternal --disableLifeCycleHooks --disableProtected",
"gh-pages": "git checkout gh-pages && git merge master --no-edit && rm -rf *.js *.js.map && npm run build:demos && npm run compodoc && git add . && git commit -m 'docs: build demos and docs' && git push && git checkout master",
"copyfiles": "copyfiles CHANGELOG.md dist && copyfiles -u 1 src/modules/**/package.json dist && copyfiles -u 1 src/**/*.scss dist/scss",
"prerelease": "npm test",
"release:git": "git add package.json package-lock.json && git commit -m 'chore: bump version number' && standard-version --first-release && git push --follow-tags origin master",
"release:npm": "npm run build:dist && npm publish dist",
"release": "npm run release:git && npm run release:npm",
"postrelease": "npm run build:clean && npm run gh-pages",
"codecov": "cat coverage/lcov.info | codecov",
"prettier": "prettier --write",
"commitmsg": "commitlint -e",
"precommit": "lint-staged"
},
"ngPackage": {
"lib": {
"entryFile": "src/index.ts",
"umdModuleIds": {
"angular-draggable-droppable": "angular-draggable-droppable",
"angular-resizable-element": "angular-resizable-element",
"date-fns/sub_days/index": "dateFns.subDays",
"date-fns/sub_weeks/index": "dateFns.subWeeks",
"date-fns/sub_months/index": "dateFns.subMonths",
"date-fns/add_days/index": "dateFns.addDays",
"date-fns/add_weeks/index": "dateFns.addWeeks",
"date-fns/add_months/index": "dateFns.addMonths",
"date-fns/start_of_today/index": "dateFns.startOfToday",
"date-fns/get_iso_week/index": "dateFns.getIsoWeek",
"date-fns/is_same_day/index": "dateFns.isSameDay",
"date-fns/set_date/index": "dateFns.setDate",
"date-fns/set_month/index": "dateFns.setMonth",
"date-fns/set_year/index": "dateFns.setYear",
"date-fns/get_date/index": "dateFns.getDate",
"date-fns/get_month/index": "dateFns.getMonth",
"date-fns/get_year/index": "dateFns.getYear",
"date-fns/difference_in_seconds/index": "dateFns.differenceInSeconds",
"date-fns/add_seconds/index": "dateFns.addSeconds",
"date-fns/add_minutes/index": "dateFns.addMinutes"
}
}
},
"lint-staged": {
"{demos,src,test}/**/*.ts": [
"npm run prettier",
"git add"
]
},
"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",
"angular5",
"calendar"
],
"author": "Matt Lewis",
"license": "MIT",
"bugs": {
"url": "https://github.com/mattlewis92/angular-calendar/issues"
},
"homepage": "https://github.com/mattlewis92/angular-calendar#readme",
"devDependencies": {
"@angular/animations": "^5.2.4",
"@angular/cdk": "^5.2.0",
"@angular/common": "^5.2.4",
"@angular/compiler": "^5.2.4",
"@angular/compiler-cli": "^5.2.4",
"@angular/core": "^5.2.4",
"@angular/forms": "^5.2.4",
"@angular/language-service": "^5.2.4",
"@angular/platform-browser": "^5.2.4",
"@angular/platform-browser-dynamic": "^5.2.4",
"@angular/router": "^5.2.4",
"@commitlint/cli": "^6.1.0",
"@commitlint/config-conventional": "^6.1.0",
"@commitlint/prompt": "^6.1.0",
"@compodoc/compodoc": "^1.0.5",
"@mattlewis92/webpack-karma-die-hard": "^1.0.4",
"@ng-bootstrap/ng-bootstrap": "^1.0.0",
"@ngtools/webpack": "^1.9.8",
"@types/chai": "^4.1.2",
"@types/mocha": "^2.2.48",
"@types/node": "^9.4.4",
"@types/rrule": "^2.1.7",
"@types/sinon": "^4.1.3",
"@types/sinon-chai": "^2.7.29",
"@types/webpack": "^3.8.5",
"angular-router-loader": "^0.8.0",
"angular2-template-loader": "^0.6.0",
"autoprefixer": "^8.0.0",
"bootstrap": "^4.0.0",
"chai": "^4.1.2",
"codecov": "^3.0.0",
"codelyzer": "^4.1.0",
"commitizen": "^2.8.1",
"concurrently": "^3.5.1",
"copyfiles": "^1.2.0",
"core-js": "^2.5.1",
"create-plunker": "^1.4.0",
"css-loader": "^0.28.9",
"ejs-compiled-loader": "^1.1.0",
"file-loader": "^1.1.5",
"font-awesome": "^4.7.0",
"fork-ts-checker-webpack-plugin": "^0.3.0",
"hammerjs": "^2.0.8",
"highlightjs-loader": "^0.2.3",
"html-webpack-plugin": "^2.30.1",
"husky": "^0.14.1",
"istanbul-instrumenter-loader": "^3.0.0",
"karma": "^2.0.0",
"karma-chrome-launcher": "^2.1.1",
"karma-coverage-istanbul-reporter": "^1.4.1",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.6",
"lint-staged": "^6.1.0",
"mocha": "^5.0.0",
"moment": "^2.19.3",
"ng-packagr": "^2.0.0",
"ngx-contextmenu": "^4.1.2",
"node-sass": "^4.7.2",
"offline-plugin": "^4.9.0",
"postcss-cli": "^5.0.0",
"postcss-flexibility": "^2.0.0",
"prettier": "^1.10.2",
"raw-loader": "^0.5.1",
"rrule": "^2.1.0",
"rxjs": "^5.5.3",
"sass-loader": "^6.0.2",
"sinon": "^4.2.3",
"sinon-chai": "^2.14.0",
"standard-version": "^4.0.0",
"style-loader": "^0.20.1",
"stylelint": "^8.3.1",
"stylelint-config-standard": "^18.0.0",
"stylelint-webpack-plugin": "^0.10.1",
"ts-loader": "^3.5.0",
"ts-node": "^4.1.0",
"tslint": "^5.9.1",
"tslint-config-mwl": "^0.3.0",
"tslint-loader": "^3.5.3",
"typescript": "~2.6.2",
"url-loader": "^0.6.2",
"web-animations-js": "^2.3.1",
"webpack": "^3.11.0",
"webpack-config-utils": "^2.3.0",
"webpack-dev-server": "^2.11.1",
"webpack-filter-warnings-plugin": "^1.1.0",
"zone.js": "^0.8.20"
},
"peerDependencies": {
"@angular/animations": ">=5.0.0 <7.0.0",
"@angular/common": ">=5.0.0 <7.0.0",
"@angular/core": ">=5.0.0 <7.0.0"
},
"dependencies": {
"angular-draggable-droppable": "^2.0.0",
"angular-resizable-element": "^2.0.0",
"calendar-utils": "^0.1.1",
"date-fns": "^1.28.5",
"positioning": "^1.3.1"
}
}