Files
send-mail/node_modules/@actions/core/package.json

52 lines
1.1 KiB
JSON
Raw Normal View History

2020-02-29 23:01:03 +01:00
{
2021-06-22 19:18:21 +02:00
"name": "@actions/core",
"version": "3.0.0",
2020-02-29 23:01:03 +01:00
"description": "Actions core lib",
2021-06-22 19:18:21 +02:00
"keywords": [
"github",
"actions",
"core"
],
"homepage": "https://github.com/actions/toolkit/tree/main/packages/core",
"license": "MIT",
"type": "module",
2021-06-22 19:18:21 +02:00
"main": "lib/core.js",
"types": "lib/core.d.ts",
"exports": {
".": {
"types": "./lib/core.d.ts",
"import": "./lib/core.js"
}
},
2020-02-29 23:01:03 +01:00
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
2020-08-30 12:08:22 +02:00
"lib",
"!.DS_Store"
2020-02-29 23:01:03 +01:00
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/toolkit.git",
"directory": "packages/core"
},
"scripts": {
2020-08-30 12:08:22 +02:00
"audit-moderate": "npm install && npm audit --json --audit-level=moderate > audit.json",
2020-02-29 23:01:03 +01:00
"test": "echo \"Error: run tests from root\" && exit 1",
2025-06-13 19:44:16 +02:00
"tsc": "tsc -p tsconfig.json"
2020-02-29 23:01:03 +01:00
},
2021-06-22 19:18:21 +02:00
"bugs": {
"url": "https://github.com/actions/toolkit/issues"
},
2022-10-21 16:52:45 +02:00
"dependencies": {
"@actions/exec": "^3.0.0",
"@actions/http-client": "^4.0.0"
2022-10-21 16:52:45 +02:00
},
2021-06-22 19:18:21 +02:00
"devDependencies": {
"@types/node": "^25.1.0"
2021-06-22 19:18:21 +02:00
}
2025-06-13 19:44:16 +02:00
}