-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.37 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
48
49
50
51
{
"name": "@eviden-actions/upload-artifact",
"description": "Upload a tar build artifact that can be used by subsequent workflow steps",
"keywords": [
"Actions",
"GitHub",
"Artifacts",
"Upload",
"tar"
],
"repository": {
"type": "git",
"url": "https://github.com/eviden-actions/upload-artifact.git"
},
"bugs": "https://github.com/eviden-actions/upload-artifact/issues",
"license": "MIT",
"private": "true",
"version": "2.0.0",
"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 pretty-quick --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.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"husky": "^9.1.7",
"prettier": "^3.4.2"
},
"optionalDependencies": {
"pretty-quick": "^4.0.0",
"semantic-release": "^24.2.1"
}
}