forked from scriptex/gitlab-calendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.13 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
{
"name": "gitlab-calendar",
"version": "2.0.1",
"description": "Embed your Gitlab Contributions Calendar anywhere",
"keywords": [
"Calendar",
"Contributions",
"Gitlab Calendar",
"Contributions Calendar"
],
"homepage": "https://gitlab-calendar.atanas.info/",
"bugs": {
"url": "https://github.com/scriptex/gitlab-calendar/issues",
"email": "hi@atanas.info"
},
"license": "MIT",
"author": "Atanas Atanasov <hi@atanas.info> (https://atanas.info)",
"funding": "https://github.com/sponsors/scriptex",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "github:scriptex/gitlab-calendar"
},
"scripts": {
"copy": "cp -rf dist demo",
"clean": "rm -rf dist && rm -rf demo/dist",
"build": "yarn clean && webpack && yarn copy",
"start": "yarn clean && webpack --watch && yarn copy",
"release-minor": "release-it minor --ci",
"release-patch": "release-it patch --ci",
"release-major": "release-it major --ci",
"changelog-local": "npx auto-changelog"
},
"devDependencies": {
"@types/d3-scale": "^4.0.8",
"@types/d3-selection": "3.0.10",
"d3-scale": "^4.0.2",
"d3-selection": "3.0.0",
"date-fns": "2.30.0",
"release-it": "17.0.1",
"ts-loader": "9.5.1",
"typescript": "5.3.3",
"webpack": "5.89.0",
"webpack-cli": "5.1.4"
},
"release-it": {
"hooks": {
"after:release": "yarn changelog-local && git add CHANGELOG.md && git commit -m \"Update CHANGELOG.md with the latest changes\" --no-verify && git push"
},
"use": "pkg.version",
"git": {
"changelog": "git log --pretty=format:\"* %s (%h)\" ${from}...${to}",
"requireCleanWorkingDir": true,
"requireBranch": false,
"requireUpstream": false,
"requireCommits": false,
"addUntrackedFiles": false,
"commit": true,
"commitMessage": "Release ${version}",
"commitArgs": [
"--no-verify"
],
"tag": true,
"tagName": "${version}",
"tagAnnotation": "Release ${version}",
"tagArgs": [],
"push": true,
"pushArgs": [
"--follow-tags"
],
"pushRepo": ""
},
"github": {
"release": false
},
"gitlab": {
"release": false
},
"npm": {
"publish": false
}
}
}