-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.09 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
{
"name": "node-versions-action",
"type": "module",
"version": "1.0.0",
"description": "Outputs a matrix with the current Node versions.",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "ncc build",
"lint": "eslint --fix",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/clevyr/deploy-matrix-action.git"
},
"author": "Clevyr",
"license": "ISC",
"bugs": {
"url": "https://github.com/clevyr/deploy-matrix-action/issues"
},
"homepage": "https://github.com/clevyr/deploy-matrix-action#readme",
"dependencies": {
"@actions/core": "1.10.1",
"@actions/github": "6.0.0",
"@octokit/webhooks-definitions": "3.67.3",
"js-yaml": "4.1.0",
"minimatch": "9.0.5"
},
"devDependencies": {
"@eslint/js": "9.17.0",
"@vercel/ncc": "0.38.1",
"eslint": "9.17.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"globals": "15.6.0",
"husky": "9.0.11",
"lint-staged": "15.2.11",
"prettier": "3.4.2"
}
}