-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
42 lines (42 loc) · 1.13 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
39
40
41
42
{
"name": "@lando/setup-lando",
"description": "GitHub Action to setup Lando on GitHub Actions.",
"version": "2.3.0",
"author": "Mike Pirog @pirog",
"main": "setup-lando.js",
"license": "GPL-3.0",
"repository": "https://github.com/lando/setup-lando",
"bugs": "https://github.com/lando/setup-lando/issues",
"homepage": "https://github.com/lando/setup-lando",
"keywords": [
"lando",
"Github Actions"
],
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.1.1",
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^2.0.1",
"@octokit/plugin-paginate-rest": "^6.0.0",
"js-yaml": "^4.1.0",
"lodash.get": "^4.4.2",
"lodash.set": "^4.3.2",
"semver": "^7.5.4",
"string-argv": "^0.3.2"
},
"devDependencies": {
"@babel/core": "^7.21.5",
"@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 setup-lando.js -o dist --source-map --license licenses.txt"
}
}