-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.04 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
{
"name": "@lando/prepare-release-action",
"version": "3.3.2",
"description": "An action that can automate release steps and sync them back to the releasing repo.",
"contributors": [
"Alec Reynolds @reynoldsalec",
"Mike Pirog @pirog"
],
"license": "GPL-3.0",
"repository": "https://github.com/lando/prepare-release-action",
"bugs": "https://github.com/lando/prepare-release-action/issues",
"homepage": "https://github.com/lando/prepare-release-action",
"keywords": [
"lando",
"Github Actions"
],
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"jsonfile": "^6.1.0",
"lodash.set": "^4.3.2",
"semver": "^7.5.1"
},
"devDependencies": {
"@babel/eslint-parser": "^7.16.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^7.32.0",
"eslint-config-google": "^0.9.1"
},
"scripts": {
"lint": "eslint .",
"prepare": "ncc build prepare-release.js -o dist --source-map --license licenses.txt"
}
}