chore: rename index.js => s3.js and update package.json deps

This commit is contained in:
AJ ONeal 2022-01-06 16:03:36 -07:00
parent efdfabb9a4
commit 2ba16dd668
No known key found for this signature in database
GPG Key ID: C1D1AA22378CC345
3 changed files with 5 additions and 5 deletions

6
package-lock.json generated
View File

@ -5,9 +5,9 @@
"requires": true, "requires": true,
"dependencies": { "dependencies": {
"@root/request": { "@root/request": {
"version": "1.7.0", "version": "1.8.0",
"resolved": "https://registry.npmjs.org/@root/request/-/request-1.7.0.tgz", "resolved": "https://registry.npmjs.org/@root/request/-/request-1.8.0.tgz",
"integrity": "sha512-lre7XVeEwszgyrayWWb/kRn5fuJfa+n0Nh+rflM9E+EpC28yIYA+FPm/OL1uhzp3TxhQM0HFN4FE2RDIPGlnmg==" "integrity": "sha512-HufCvoTwqR30OyKSjwg28W5QCUpypSJZpOYcJbC9PME5kI6cOYsccYs/6bXfsuEoarz8+YwBDrsuM1UdBMxMLw=="
}, },
"aws4": { "aws4": {
"version": "1.9.1", "version": "1.9.1",

View File

@ -2,7 +2,7 @@
"name": "@root/s3", "name": "@root/s3",
"version": "1.2.0", "version": "1.2.0",
"description": "A simple, lightweight s3 client with only 2 dependencies", "description": "A simple, lightweight s3 client with only 2 dependencies",
"main": "index.js", "main": "s3.js",
"bin": { "bin": {
"s3-download": "bin/s3-download.js" "s3-download": "bin/s3-download.js"
}, },
@ -28,7 +28,7 @@
"author": "AJ ONeal <coolaj86@gmail.com> (https://coolaj86.com/)", "author": "AJ ONeal <coolaj86@gmail.com> (https://coolaj86.com/)",
"license": "(MIT OR Apache-2.0)", "license": "(MIT OR Apache-2.0)",
"dependencies": { "dependencies": {
"@root/request": "^1.7.0", "@root/request": "^1.8.0",
"aws4": "^1.9.1" "aws4": "^1.9.1"
}, },
"devDependencies": { "devDependencies": {

View File