forked from justincy/github-action-npm-release
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 879 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 879 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
{
"name": "github-action-npm-release",
"version": "3.0.1",
"description": "Automatically generate a release when the package.json version changes",
"main": "src/index.js",
"scripts": {
"format": "prettier --write src/index.js",
"build": "ncc build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/justincy/github-action-npm-release.git"
},
"author": "Justin York",
"license": "MIT",
"bugs": {
"url": "https://github.com/justincy/github-action-npm-release/issues"
},
"homepage": "https://github.com/justincy/github-action-npm-release#readme",
"dependencies": {
"@actions/core": "2.0.3",
"@octokit/rest": "22.0.1"
},
"devDependencies": {
"@vercel/ncc": "0.45.0",
"prettier": "3.9.6"
},
"packageManager": "yarn@4.18.0"
}