forked from mmoyaferrer/set-github-variable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 959 Bytes
/
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
{
"name": "set-github-variable",
"version": "1.4.0",
"repository": "https://github.com/OpenFoxes/set-github-variable",
"license": "MIT License",
"type": "module",
"dependencies": {
"@actions/core": "1.10.1",
"@actions/github": "6.0.0",
"@octokit/core": "5.0.2",
"node-fetch": "3.3.2",
"prettier": "^3.3.3"
},
"devDependencies": {
"eslint": "7.32.0",
"eslint-config-strongloop": "2.1.0",
"eslint-plugin-jsdoc": "30.7.13",
"husky": "4.3.8",
"lint-staged": "10.5.4",
"run-func": "3.0.0"
},
"scripts": {
"lint": "eslint .",
"format-all": "prettier -w .",
"generate-readme": "run-func src/generate-readme.js generateReadme"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/*.js": [
"eslint . --fix"
]
}
}