-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1 KB
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
{
"name": "semantic-release-action",
"version": "0.0.0-semantically-released",
"description": "GitHub action runs `semantic-release`. Respects .releaserc.js in your repo. Exports version variables for you to use in subsequent actions.",
"homepage": "https://github.com/codfish/semantic-release-action",
"author": {
"name": "Chris O'Donnell",
"email": "chris@codfish.dev",
"url": "https://codfish.dev"
},
"type": "module",
"main": "entrypoint.js",
"keywords": [],
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/codfish/semantic-release-action.git"
},
"scripts": {
"format": "eslint --fix",
"lint": "eslint",
"test": "echo 'No tests'"
},
"dependencies": {
"@actions/core": "^3.0.0",
"arrify": "^3.0.0",
"cosmiconfig": "^9.0.0",
"json5": "^2.2.1",
"semantic-release": "^25.0.3"
},
"devDependencies": {
"@codfish/eslint-config": "^13.1.1",
"eslint": "^10.0.2",
"vitest": "^4.0.18"
}
}