mirror of
https://github.com/actions/runner-container-hooks.git
synced 2026-01-05 00:38:24 +08:00
36 lines
883 B
JSON
36 lines
883 B
JSON
{
|
|
"name": "dockerhooks",
|
|
"version": "0.1.0",
|
|
"description": "",
|
|
"main": "lib/index.js",
|
|
"scripts": {
|
|
"test": "jest --runInBand",
|
|
"build": "npx tsc && npx ncc build",
|
|
"format": "prettier --write '**/*.ts'",
|
|
"format-check": "prettier --check '**/*.ts'",
|
|
"lint": "eslint src/**/*.ts"
|
|
},
|
|
"author": "",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/core": "^1.11.1",
|
|
"@actions/exec": "^1.1.1",
|
|
"hooklib": "file:../hooklib",
|
|
"shlex": "^3.0.0",
|
|
"uuid": "^11.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.25.2",
|
|
"@babel/preset-env": "^7.25.4",
|
|
"@types/jest": "^30.0.0",
|
|
"@types/node": "^24.0.14",
|
|
"@typescript-eslint/parser": "^8.37.0",
|
|
"@vercel/ncc": "^0.38.3",
|
|
"jest": "^30.0.4",
|
|
"ts-jest": "^29.4.0",
|
|
"ts-node": "^10.9.2",
|
|
"tsconfig-paths": "^4.2.0",
|
|
"typescript": "^5.8.3"
|
|
}
|
|
}
|