-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.38 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
43
44
45
46
47
{
"name": "@eviden-actions/clean-self-hosted-runner",
"description": "clean-self-hosted-runner repository for @eviden-actions organization",
"repository": {
"type": "git",
"url": "https://github.com/eviden-actions/clean-self-hosted-runner.git"
},
"bugs": "https://github.com/eviden-actions/clean-self-hosted-runner/issues",
"license": "MIT",
"private": "true",
"version": "1.3.14",
"engines": {
"node": ">= 16.0.0",
"npm": ">= 8.0.0"
},
"files": [
"action.yml"
],
"scripts": {
"start": "echo 'No start script defined for this project'",
"build": "echo 'No build script defined for this project'",
"lint": "npm run lint:style",
"lint:fix": "npm run lint:style:fix",
"lint:style": "prettier --check --ignore-unknown .",
"lint:style:fix": "prettier --write --ignore-unknown .",
"git:pre-commit": "npx lint-staged",
"git:pre-push": "npm test",
"prepare": "husky install",
"release": "npx semantic-release",
"test": "echo 'No test script defined for this project'"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"husky": "^9.1.6",
"prettier": "^3.3.3"
},
"optionalDependencies": {
"lint-staged": "^15.2.10",
"semantic-release": "^24.2.0"
},
"overrides": {
"conventional-changelog-conventionalcommits": ">= 8.0.0"
}
}