-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 715 Bytes
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 715 Bytes
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
{
"private": true,
"description": "Creates a new tag using the format Y.M.D, but only if HEAD isn’t already tagged",
"keywords": [
"version",
"release",
"year",
"time",
"tag",
"git",
"cli",
"automated"
],
"repository": "fregante/daily-version-action",
"license": "MIT",
"author": "fregante",
"scripts": {
"build": "ncc build index.js -o distribution",
"test": "xo"
},
"engines": {
"node": ">=24"
},
"xo": [
{
"ignores": [
"distribution/**"
]
},
{
"rules": {
"unicorn/no-process-exit": "off"
}
}
],
"dependencies": {
"daily-version": "^2.0.0"
},
"devDependencies": {
"@actions/core": "^3.0.1",
"@vercel/ncc": "^0.38.4",
"xo": "^2.0.2"
}
}