-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 828 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 828 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
30
31
32
33
34
35
36
{
"name": "set-variable",
"private": true,
"version": "0.0.0-development",
"license": "MIT License",
"repository": "https://github.com/action-pack/set-variable",
"scripts": {
"lint": "eslint index.js",
"build": "ncc build index.js -m -o dist",
"build_stats": "ncc build index.js -s --stats-out dist/stats -o dist"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^5.1.1"
},
"devDependencies": {
"husky": "^9.0.0",
"lint-staged": "^16.0.0",
"eslint-plugin-jsdoc": "^61.0.0",
"eslint-config-strongloop": "^2.1.0"
},
"overrides": {
"@octokit/core": "^5.0.1",
"@actions/http-client": "2.1.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/*.js": [
"eslint . --fix"
]
}
}