-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 2.97 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
{
"name": "check-my-package-version",
"version": "1.2.0",
"repository": "[email protected]:megatroom/check-my-package-version.git",
"license": "MIT",
"bin": {
"check-my-package-version": "dist/index.js"
},
"scripts": {
"lint": "prettier --check ./src",
"start": "node src/index.js",
"build": "webpack"
},
"dependencies": {
"commander": "^9.4.0"
},
"devDependencies": {
"@auto-it/first-time-contributor": "^10.37.4",
"@babel/core": "^7.19.0",
"@babel/preset-env": "^7.19.0",
"auto": "^10.37.4",
"babel-loader": "^8.2.5",
"clean-webpack-plugin": "^4.0.0",
"prettier": "^2.7.1",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-node-externals": "^3.0.0"
},
"author": "Bruno Nardini <[email protected]>",
"auto": {
"plugins": [
"npm",
"first-time-contributor",
"released"
],
"labels": [
{
"name": "version:major",
"changelogTitle": "💥 Breaking Change",
"description": "Increment the major version",
"releaseType": "major",
"color": "#C5000B",
"overwrite": true
},
{
"name": "version:minor",
"changelogTitle": "🚀 Enhancement",
"description": "Increment the minor version",
"releaseType": "minor",
"color": "#F1A60E",
"overwrite": true
},
{
"name": "version:patch",
"changelogTitle": "🐛 Bug Fix",
"description": "Increment the patch version",
"releaseType": "patch",
"color": "#870048",
"overwrite": true
},
{
"name": "version:performance",
"changelogTitle": "🏎 Performance",
"description": "Improve performance of an existing feature",
"releaseType": "patch",
"color": "#f4b2d8",
"overwrite": true
},
{
"name": "version:internal",
"changelogTitle": "🏠 Internal",
"description": "Changes only affect the internal API",
"releaseType": "none",
"color": "#696969",
"overwrite": true
},
{
"name": "version:docs",
"changelogTitle": "📝 Documentation",
"description": "Changes only affect the documentation",
"releaseType": "none",
"color": "#cfd3d7",
"overwrite": true
},
{
"name": "version:dependencies",
"changelogTitle": "🔩 Dependency Updates",
"description": "Update one or more dependencies version",
"releaseType": "none",
"color": "#8732bc",
"overwrite": true
},
{
"name": "version:skip-release",
"description": "Preserve the current version",
"releaseType": "skip",
"color": "#bf5416",
"overwrite": true
},
{
"name": "version:release",
"description": "Create a release when this pr is merged",
"releaseType": "release",
"color": "#007f70",
"overwrite": true
}
]
}
}