-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.72 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
52
53
54
55
56
{
"name": "gh-docker-logs",
"version": "2.2.2",
"description": "Collect logs from all running docker containers.",
"main": "lib/main.js",
"dependencies": {
"@actions/core": "^1.10.0"
},
"devDependencies": {
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/chai": "^4.3.3",
"@types/jest": "^29.1.2",
"@types/node": "^20.11.7",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"@vercel/ncc": "^0.38.1",
"axios": "^1.7.4",
"chai": "^4.3.6",
"eslint": "^8.25.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^27.1.1",
"jest": "^29.2.0",
"prettier": "^3.2.4",
"semantic-release": "^23.0.0",
"ts-jest": "^29.0.3",
"typescript": "^5.3.3"
},
"scripts": {
"test": "jest",
"pre": "tsc",
"clean": "rm -rf lib dist",
"format": "prettier --write \"**/*.ts\"",
"lint": "eslint src/**/*.ts",
"build": "ncc build --source-map --license licenses.txt",
"all": "npm run format && npm run clean && npm run pre && npm run lint && npm run build && npm test",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/step-security/gh-docker-logs.git"
},
"keywords": [
"github",
"actions",
"docker"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/step-security/gh-docker-logs/issues"
},
"homepage": "https://github.com/step-security/gh-docker-logs#readme",
"volta": {
"node": "20.11.0"
}
}