-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.13 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
{
"name": "@devoxa/scaleway-container-registry-prune-action",
"description": "Prune images in the Scaleway Container Registry by deleting excess tags via Github Actions",
"version": "0.0.0",
"private": true,
"main": "dist/index.js",
"license": "MIT",
"repository": {
"url": "https://github.com/devoxa/scaleway-container-registry-prune-action"
},
"scripts": {
"test": "jest",
"format": "prettier --ignore-path='.prettierignore' --list-different --write .",
"format:check": "prettier --ignore-path='.prettierignore' --check .",
"lint": "eslint '{src,tests}/**/*.ts'",
"build": "rm -rf dist/ && ncc build src/action.ts -o dist"
},
"prettier": "@devoxa/prettier-config",
"dependencies": {
"@actions/core": "1.11.1"
},
"devDependencies": {
"@devoxa/eslint-config": "4.0.2",
"@devoxa/prettier-config": "2.0.3",
"@swc/core": "1.10.15",
"@swc/jest": "0.2.37",
"@types/jest": "29.5.14",
"@types/node": "20.9.5",
"@vercel/ncc": "0.38.3",
"eslint": "9.20.0",
"jest": "29.7.0",
"prettier": "3.4.2",
"typescript": "5.7.3"
},
"volta": {
"node": "20.9.0"
}
}