Files
hello-world-javascript-action/node_modules/@actions/core/package.json

45 lines
975 B
JSON
Raw Normal View History

2019-08-03 14:44:52 -07:00
{
"name": "@actions/core",
2022-04-05 10:05:12 +10:00
"version": "1.6.0",
2019-08-03 14:44:52 -07:00
"description": "Actions core lib",
"keywords": [
2019-09-06 15:17:38 -07:00
"github",
"actions",
"core"
2019-08-03 14:44:52 -07:00
],
2022-04-05 10:05:12 +10:00
"homepage": "https://github.com/actions/toolkit/tree/main/packages/core",
2019-08-03 14:44:52 -07:00
"license": "MIT",
"main": "lib/core.js",
2022-04-05 10:05:12 +10:00
"types": "lib/core.d.ts",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
2022-04-05 10:05:12 +10:00
"lib",
"!.DS_Store"
],
2019-08-03 14:44:52 -07:00
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
2022-04-05 10:05:12 +10:00
"url": "git+https://github.com/actions/toolkit.git",
"directory": "packages/core"
2019-08-03 14:44:52 -07:00
},
"scripts": {
2022-04-05 10:05:12 +10:00
"audit-moderate": "npm install && npm audit --json --audit-level=moderate > audit.json",
2019-08-03 14:44:52 -07:00
"test": "echo \"Error: run tests from root\" && exit 1",
"tsc": "tsc"
},
"bugs": {
"url": "https://github.com/actions/toolkit/issues"
},
2022-04-05 10:05:12 +10:00
"dependencies": {
"@actions/http-client": "^1.0.11"
},
"devDependencies": {
"@types/node": "^12.0.2"
2022-04-05 10:05:12 +10:00
}
}