mirror of
https://github.com/actions/runner.git
synced 2025-12-11 04:46:58 +00:00
29 lines
695 B
JSON
29 lines
695 B
JSON
{
|
|
"name": "hooklib",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"main": "lib/index.js",
|
|
"types": "index.d.ts",
|
|
"scripts": {
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"build": "tsc && ncc build",
|
|
"format": "prettier --write '**/*.ts'",
|
|
"format-check": "prettier --check '**/*.ts'",
|
|
"lint": "eslint src/**/*.ts"
|
|
},
|
|
"author": "",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/node": "^17.0.23",
|
|
"@typescript-eslint/parser": "^5.18.0",
|
|
"@zeit/ncc": "^0.22.3",
|
|
"eslint": "^8.12.0",
|
|
"eslint-plugin-github": "^4.3.6",
|
|
"prettier": "^2.6.2",
|
|
"typescript": "^4.6.3"
|
|
},
|
|
"dependencies": {
|
|
"@actions/core": "^1.6.0"
|
|
}
|
|
}
|