action-debian-package/node_modules/@actions/core/package.json

46 lines
1 KiB
JSON
Raw Normal View History

2020-03-26 09:34:31 +00:00
{
2022-10-27 08:26:28 +00:00
"name": "@actions/core",
2024-01-06 12:51:02 +00:00
"version": "1.10.1",
2020-03-26 09:34:31 +00:00
"description": "Actions core lib",
2022-10-27 08:26:28 +00:00
"keywords": [
"github",
"actions",
"core"
],
"homepage": "https://github.com/actions/toolkit/tree/main/packages/core",
"license": "MIT",
"main": "lib/core.js",
"types": "lib/core.d.ts",
2020-03-26 09:34:31 +00:00
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
2020-11-12 15:37:43 +00:00
"lib",
"!.DS_Store"
2020-03-26 09:34:31 +00:00
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/toolkit.git",
"directory": "packages/core"
},
"scripts": {
2020-11-12 15:37:43 +00:00
"audit-moderate": "npm install && npm audit --json --audit-level=moderate > audit.json",
2020-03-26 09:34:31 +00:00
"test": "echo \"Error: run tests from root\" && exit 1",
2024-01-06 12:51:02 +00:00
"tsc": "tsc -p tsconfig.json"
2020-03-26 09:34:31 +00:00
},
2022-10-27 08:26:28 +00:00
"bugs": {
"url": "https://github.com/actions/toolkit/issues"
},
"dependencies": {
"@actions/http-client": "^2.0.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/node": "^12.0.2",
"@types/uuid": "^8.3.4"
}
2024-01-06 12:51:02 +00:00
}