Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

bloody-simple-s3

Package Overview
Dependencies
Maintainers
1
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bloody-simple-s3 - npm Package Compare versions

Comparing version 0.6.1 to 0.6.3

lib/BloodySimpleS3.js

58

CHANGELOG.md

@@ -0,75 +1,83 @@

## 0.6.3 - 2016-06-03
* Drop gulp in favor of npm scripts.
## 0.6.2 - 2016-06-03
* Update npm dependencies to their latest version.
## 0.6.1 - 2015-11-12
* Use commonjs to import/export modules to avoid babel "default" decorator - see https://github.com/babel/babel/issues/2724 for further info
* Replace gulpfile.js with gulpfile.babel.js
* Use commonjs to import/export modules to avoid babel "default" decorator - see https://github.com/babel/babel/issues/2724 for further info.
* Replace gulpfile.js with gulpfile.babel.js.
## 0.6.0 - 2015-11-10
* Rewrite in es2015 using babel + gulp
* Replace jshint with eslint, which provides better support for es2015
* Update npm dependencies: aws-sdk@2.2.15, lodash@3.10.1, bluebird@3.0.5, dotenv@1.2.0, mocha@2.3.3, chai@3.4.1
* Rewrite in es2015 using babel + gulp.
* Replace jshint with eslint, which provides better support for es2015.
* Update npm dependencies: aws-sdk@2.2.15, lodash@3.10.1, bluebird@3.0.5, dotenv@1.2.0, mocha@2.3.3, chai@3.4.1.
## 0.5.0 - 2015-05-25
* Introduce custom errors with distinct names for better visibility
* Introduce custom errors with distinct names for better visibility.
## 0.4.0 - 2015-05-15
* Calculate md5 checksum on #upload() and #download() to make sure the file's integrity is intact
* Install type-of@2.0.1 for better (i.e. more descriptive) error messages
* Update npm dependencies (aws-sdk@2.1.28, mocha@2.2.5)
* Calculate md5 checksum on #upload() and #download() to make sure the file's integrity is intact.
* Install type-of@2.0.1 for better (i.e. more descriptive) error messages.
* Update npm dependencies (aws-sdk@2.1.28, mocha@2.2.5).
## 0.3.5 - 2015-05-05
* Update npm dependencies (aws-sdk@2.1.26, bluebird@2.9.25, lodash@3.8.0, chai@2.3.0)
* Adopt semantic versioning
* Update npm dependencies (aws-sdk@2.1.26, bluebird@2.9.25, lodash@3.8.0, chai@2.3.0).
* Adopt semantic versioning.
## 0.3.4 - 2015-04-23
* Update aws-sdk to v.2.1.24
* Update aws-sdk to v.2.1.24.
## 0.3.3 - 2015-04-16
* Set cursor=dir by default as a smarter way to filter our dir references from the #list() results
* Set cursor=dir by default as a smarter way to filter our dir references from the #list() results.
## 0.3.2 - 2015-04-16
* Remove self reference to the dir on #list(dir)
* Remove self reference to the dir on #list(dir).
## 0.3.1 - 2015-04-06
* Add #readBuffer method to read the contents of a file from S3
* Add #readBuffer method to read the contents of a file from S3.
## 0.3.0 - 2015-04-03
* Add #rename as alias of #move
* Add #rename as alias of #move.
## 0.3.0-alpha - 2015-03-16
* Refactor to provide a consistent API
* Refactor to provide a consistent API.
## 0.2.5 - 2015-03-13
* Refactor to match the Airbnb JS guidelines
* Update npm dependencies to their latest version
* Refactor to match the Airbnb JS guidelines.
* Update npm dependencies to their latest version.
## 0.2.4 - 2014-11-28
* Use #encodeURIComponent() instead of #encodeURI() to encode @CopySource
* Use #encodeURIComponent() instead of #encodeURI() to encode @CopySource.
## 0.2.3 - 2014-11-28
* Comment test code that wasn't supposed to be there
* Comment test code that wasn't supposed to be there.
## 0.2.2 - 2014-11-28
* Normalize promise resolve values
* Normalize promise resolve values.
## 0.2.1 - 2014-11-28
* Allow limit and cursor options on #list()
* Allow limit and cursor options on #list().
## 0.2.0 - 2014-11-27
* Introducing #list(), #copy(), #remove(), #move() methods to manipulate files on Amazon S3
* Old functions refactored with new names and params
* Introducing #list(), #copy(), #remove(), #move() methods to manipulate files on Amazon S3.
* Old functions refactored with new names and params.
{
"name": "bloody-simple-s3",
"version": "0.6.1",
"version": "0.6.3",
"description": "A bloody simple interface to S3, based on the official AWS sdk",

@@ -9,7 +9,10 @@ "repository": {

},
"main": "dist/BloodySimpleS3.js",
"main": "lib/BloodySimpleS3.js",
"scripts": {
"build": "gulp clean && gulp build",
"clean": "rimraf lib",
"prebuild": "npm run clean",
"build": "babel src --out-dir lib",
"prepublish": "npm run build",
"test": "node test/index.js"
"test": "mocha --reporter=spec --timeout=10000 test/index.js",
"lint": "eslint src/; exit 0"
},

@@ -33,21 +36,24 @@ "keywords": [

"dependencies": {
"aws-sdk": "^2.2.15",
"bluebird": "^3.0.5",
"aws-sdk": "^2.3.17",
"bluebird": "^3.4.0",
"customerror": "^1.0.1",
"lodash": "^3.10.1",
"lodash": "^4.13.1",
"type-of": "^2.0.1"
},
"devDependencies": {
"chai": "^3.4.1",
"dotenv": "^1.2.0",
"mocha": "^2.3.3",
"gulp": "^3.9.0",
"gulp-babel": "^6.1.0",
"gulp-plumber": "^1.0.1",
"gulp-rimraf": "^0.2.0",
"babel": "^6.1.5",
"babel-core": "^6.1.4",
"babel-plugin-transform-es2015-modules-commonjs": "^6.1.4",
"babel-preset-es2015": "^6.1.2"
"babel": "^6.5.2",
"babel-cli": "^6.7.5",
"babel-core": "^6.7.7",
"babel-plugin-add-module-exports": "^0.1.4",
"babel-plugin-transform-es2015-modules-commonjs": "^6.7.7",
"babel-preset-es2015": "^6.6.0",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"dotenv": "^2.0.0",
"eslint": "^2.8.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.5.0",
"mocha": "^2.4.5",
"rimraf": "^2.5.2"
}
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc