mirror of https://github.com/actions/toolkit
47 lines
1.0 KiB
JSON
47 lines
1.0 KiB
JSON
{
|
|
"name": "@actions/helpers",
|
|
"version": "1.0.0",
|
|
"description": "Helpers for creating actions",
|
|
"main": "lib/helpers.js",
|
|
"types": "lib/helpers.d.ts",
|
|
"directories": {
|
|
"lib": "lib",
|
|
"test": "__tests__"
|
|
},
|
|
"files": [
|
|
"lib",
|
|
"!.DS_Store"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"scripts": {
|
|
"audit-moderate": "npm install && npm audit --json --audit-level=moderate > audit.json",
|
|
"test": "echo \"Error: run tests from root\" && exit 1",
|
|
"tsc": "tsc -p tsconfig.json"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/actions/toolkit.git",
|
|
"directory": "packages/helpers"
|
|
},
|
|
"keywords": [
|
|
"github",
|
|
"actions",
|
|
"helpers"
|
|
],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/actions/toolkit/issues"
|
|
},
|
|
"homepage": "https://github.com/actions/toolkit#readme",
|
|
"devDependencies": {
|
|
"@types/node": "^20.5.0"
|
|
},
|
|
"dependencies": {
|
|
"@actions/core": "^1.10.0",
|
|
"@actions/exec": "^1.1.1"
|
|
}
|
|
}
|