aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/node_modules/@actions/core/package.json
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2021-03-14 03:45:15 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2021-03-14 03:45:15 +0300
commita7a0ed975046cd2581ddb8825af5e3f849efe4ab (patch)
tree7c41b2bab5d3f5c0de1e3fa364f831850806f70a /node_modules/@actions/core/package.json
parentmake it into a JavaScript action (diff)
downloadcleanup-path-a7a0ed975046cd2581ddb8825af5e3f849efe4ab.tar.gz
cleanup-path-a7a0ed975046cd2581ddb8825af5e3f849efe4ab.zip
add node_modules/
Diffstat (limited to 'node_modules/@actions/core/package.json')
-rw-r--r--node_modules/@actions/core/package.json41
1 files changed, 41 insertions, 0 deletions
diff --git a/node_modules/@actions/core/package.json b/node_modules/@actions/core/package.json
new file mode 100644
index 0000000..ffcced4
--- /dev/null
+++ b/node_modules/@actions/core/package.json
@@ -0,0 +1,41 @@
+{
+ "name": "@actions/core",
+ "version": "1.2.6",
+ "description": "Actions core lib",
+ "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",
+ "directories": {
+ "lib": "lib",
+ "test": "__tests__"
+ },
+ "files": [
+ "lib",
+ "!.DS_Store"
+ ],
+ "publishConfig": {
+ "access": "public"
+ },
+ "repository": {
+ "type": "git",
+ "url": "git+https://github.com/actions/toolkit.git",
+ "directory": "packages/core"
+ },
+ "scripts": {
+ "audit-moderate": "npm install && npm audit --json --audit-level=moderate > audit.json",
+ "test": "echo \"Error: run tests from root\" && exit 1",
+ "tsc": "tsc"
+ },
+ "bugs": {
+ "url": "https://github.com/actions/toolkit/issues"
+ },
+ "devDependencies": {
+ "@types/node": "^12.0.2"
+ }
+}