From 2ba16dd6689b9e265f631237ed3902910e35befe Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Thu, 6 Jan 2022 16:03:36 -0700 Subject: [PATCH] chore: rename index.js => s3.js and update package.json deps --- package-lock.json | 6 +++--- package.json | 4 ++-- index.js => s3.js | 0 3 files changed, 5 insertions(+), 5 deletions(-) rename index.js => s3.js (100%) diff --git a/package-lock.json b/package-lock.json index 424258f..88ff2f2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -5,9 +5,9 @@ "requires": true, "dependencies": { "@root/request": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/@root/request/-/request-1.7.0.tgz", - "integrity": "sha512-lre7XVeEwszgyrayWWb/kRn5fuJfa+n0Nh+rflM9E+EpC28yIYA+FPm/OL1uhzp3TxhQM0HFN4FE2RDIPGlnmg==" + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/@root/request/-/request-1.8.0.tgz", + "integrity": "sha512-HufCvoTwqR30OyKSjwg28W5QCUpypSJZpOYcJbC9PME5kI6cOYsccYs/6bXfsuEoarz8+YwBDrsuM1UdBMxMLw==" }, "aws4": { "version": "1.9.1", diff --git a/package.json b/package.json index 7f57a50..b17d860 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "@root/s3", "version": "1.2.0", "description": "A simple, lightweight s3 client with only 2 dependencies", - "main": "index.js", + "main": "s3.js", "bin": { "s3-download": "bin/s3-download.js" }, @@ -28,7 +28,7 @@ "author": "AJ ONeal (https://coolaj86.com/)", "license": "(MIT OR Apache-2.0)", "dependencies": { - "@root/request": "^1.7.0", + "@root/request": "^1.8.0", "aws4": "^1.9.1" }, "devDependencies": { diff --git a/index.js b/s3.js similarity index 100% rename from index.js rename to s3.js