move-semver-tags-action 7.0.22 → 7.0.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +32 -32
package/package.json
CHANGED
|
@@ -1,44 +1,35 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "move-semver-tags-action",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.23",
|
|
4
4
|
"description": "Move your SemVer major and minor tags automatically",
|
|
5
|
-
"main": "src/index.js",
|
|
6
|
-
"files": [
|
|
7
|
-
"bin",
|
|
8
|
-
"src"
|
|
9
|
-
],
|
|
10
|
-
"bin": {
|
|
11
|
-
"move-semver-tags-action": "bin/index.js"
|
|
12
|
-
},
|
|
13
|
-
"scripts": {
|
|
14
|
-
"lint:git": "node node_modules/@crowdstrike/commitlint/bin --from HEAD~1",
|
|
15
|
-
"lint": "eslint",
|
|
16
|
-
"test": "mocha",
|
|
17
|
-
"release": "commit-and-tag-version --commit-all"
|
|
18
|
-
},
|
|
19
|
-
"commit-and-tag-version": {
|
|
20
|
-
"scripts": {
|
|
21
|
-
"prerelease": "ncc build src/action.js -o dist && git add -A dist",
|
|
22
|
-
"posttag": "git push --follow-tags --atomic"
|
|
23
|
-
}
|
|
24
|
-
},
|
|
25
|
-
"repository": {
|
|
26
|
-
"type": "git",
|
|
27
|
-
"url": "git+https://github.com/kellyselden/move-semver-tags-action.git"
|
|
28
|
-
},
|
|
29
5
|
"keywords": [
|
|
30
6
|
"github-actions",
|
|
31
7
|
"semver",
|
|
32
8
|
"tags"
|
|
33
9
|
],
|
|
34
|
-
"
|
|
35
|
-
"license": "MIT",
|
|
10
|
+
"homepage": "https://github.com/kellyselden/move-semver-tags-action#readme",
|
|
36
11
|
"bugs": {
|
|
37
12
|
"url": "https://github.com/kellyselden/move-semver-tags-action/issues"
|
|
38
13
|
},
|
|
39
|
-
"
|
|
40
|
-
|
|
41
|
-
"
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "git+https://github.com/kellyselden/move-semver-tags-action.git"
|
|
17
|
+
},
|
|
18
|
+
"license": "MIT",
|
|
19
|
+
"author": "Kelly Selden, Jenny Judova, & Gonçalo Morais",
|
|
20
|
+
"main": "src/index.js",
|
|
21
|
+
"bin": {
|
|
22
|
+
"move-semver-tags-action": "bin/index.js"
|
|
23
|
+
},
|
|
24
|
+
"files": [
|
|
25
|
+
"bin",
|
|
26
|
+
"src"
|
|
27
|
+
],
|
|
28
|
+
"scripts": {
|
|
29
|
+
"lint": "eslint",
|
|
30
|
+
"lint:git": "node node_modules/@crowdstrike/commitlint/bin --from HEAD~1",
|
|
31
|
+
"release": "commit-and-tag-version --commit-all",
|
|
32
|
+
"test": "mocha"
|
|
42
33
|
},
|
|
43
34
|
"dependencies": {
|
|
44
35
|
"@actions/core": "^1.2.6",
|
|
@@ -49,12 +40,12 @@
|
|
|
49
40
|
},
|
|
50
41
|
"devDependencies": {
|
|
51
42
|
"@crowdstrike/commitlint": "^8.0.3",
|
|
52
|
-
"@kellyselden/node-template": "6.
|
|
43
|
+
"@kellyselden/node-template": "6.9.0",
|
|
53
44
|
"@vercel/ncc": "0.38.3",
|
|
54
45
|
"chai": "^4.5.0",
|
|
55
46
|
"commit-and-tag-version": "^12.0.0",
|
|
56
47
|
"eslint": "^9.34.0",
|
|
57
|
-
"eslint-config-sane-node": "^
|
|
48
|
+
"eslint-config-sane-node": "^6.0.0",
|
|
58
49
|
"eslint-plugin-mocha": "^10.5.0",
|
|
59
50
|
"git-fixtures": "^9.0.0",
|
|
60
51
|
"mocha": "^11.7.1",
|
|
@@ -62,5 +53,14 @@
|
|
|
62
53
|
"renovate-config-standard": "2.4.2",
|
|
63
54
|
"sinon": "^21.0.0",
|
|
64
55
|
"standard-node-template": "7.2.0"
|
|
56
|
+
},
|
|
57
|
+
"engines": {
|
|
58
|
+
"node": ">=20.9"
|
|
59
|
+
},
|
|
60
|
+
"commit-and-tag-version": {
|
|
61
|
+
"scripts": {
|
|
62
|
+
"prerelease": "ncc build src/action.js -o dist && git add -A dist",
|
|
63
|
+
"posttag": "git push --follow-tags --atomic"
|
|
64
|
+
}
|
|
65
65
|
}
|
|
66
66
|
}
|