-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
51 lines (51 loc) · 1.54 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
{
"author": "Luca Comellini",
"dependencies": {
"@actions/core": "^1.11.1",
"@docker/actions-toolkit": "^0.42.0",
"axios": "^1.7.7"
},
"description": "GitHub Action to check if a Docker image needs to be updated",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.0",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"@vercel/ncc": "^0.38.2",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"js-yaml": "^4.1.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3"
},
"keywords": [
"actions",
"docker",
"update"
],
"license": "MIT",
"main": "src/main.ts",
"name": "lucacome-docker-image-update-checker",
"packageManager": "[email protected]",
"repository": {
"type": "git",
"url": "git+https://github.com/lucacome/docker-image-update-checker.git"
},
"scripts": {
"all": "yarn run format && yarn run build && yarn run test",
"build": "ncc build --source-map --minify --license licenses.txt",
"eslint": "eslint --max-warnings=0 .",
"eslint:fix": "eslint --fix .",
"format": "yarn run prettier:fix && yarn run eslint:fix",
"lint": "yarn run prettier && yarn run eslint",
"prettier": "prettier --check \"./**/*.ts\"",
"prettier:fix": "prettier --write \"./**/*.ts\"",
"test": "jest"
}
}