UNPKG

s3st

Version:

A command line utility that allows you to stream data from multiple S3 objects directly into your terminal

64 lines (63 loc) 1.64 kB
{ "name": "s3st", "version": "1.1.0", "description": "A command line utility that allows you to stream data from multiple S3 objects directly into your terminal", "main": "src/index.js", "bin": { "s3st": "src/cli.js" }, "files": [ "src/" ], "engines": { "node": ">=10" }, "engineStrict": true, "scripts": { "test:lint": "eslint src", "build": "scripts/build.sh $npm_package_version", "test": "npm run test:lint", "release:tag": "git tag $npm_package_version && git push --tags", "package:publish": "scripts/publish-release.js $GITHUB_TOKEN lmammino/s3st $npm_package_version" }, "repository": { "type": "git", "url": "git+https://github.com/lmammino/s3st.git" }, "keywords": [ "Stream", "Streams", "AWS", "S3", "Bucket", "List bucket", "Object" ], "author": "Luciano Mammino", "license": "MIT", "bugs": { "url": "https://github.com/lmammino/s3st/issues" }, "homepage": "https://github.com/lmammino/s3st#readme", "dependencies": { "aws-sdk": "^2.694.0", "commander": "^5.1.0", "pumpify": "^2.0.1", "readable-stream": "^3.6.0", "s3-list-bucket-stream": "^1.0.0", "s3-object-content-stream": "^1.0.1" }, "devDependencies": { "acorn": "^7.3.1", "eslint": "^7.2.0", "eslint-config-standard": "^14.1.1", "eslint-plugin-import": "^2.21.2", "eslint-plugin-node": "^11.1.0", "eslint-plugin-promise": "^4.2.1", "eslint-plugin-standard": "^4.0.1", "nexe": "^3.3.2", "request": "^2.88.2", "request-promise": "^4.2.5", "request-promise-core": "^1.1.3" } }