@warerebel/azureblobstoragehelper
Advanced tools
Comparing version 0.5.2 to 0.8.2
{ | ||
"name": "@warerebel/azureblobstoragehelper", | ||
"version": "0.5.2", | ||
"version": "0.8.2", | ||
"description": "Module to ease the storing of data in azure gen2 blob storage", | ||
"main": "lib/azureBlobStorage.js", | ||
"main": "dist/azureBlobStorage.js", | ||
"files": [ | ||
"dist/*.js", | ||
"src/*.ts", | ||
"test/*.spec.js", | ||
"index.d.ts" | ||
], | ||
"scripts": { | ||
"build": "node node_modules/typescript/bin/tsc", | ||
"test": "node node_modules/nyc/bin/nyc node_modules/mocha/bin/mocha test/*.spec.js", | ||
@@ -28,11 +35,15 @@ "lint": "node node_modules/eslint/bin/eslint **/*.js", | ||
"dependencies": { | ||
"@warerebel/azurerestauth": "^0.2.1" | ||
"@warerebel/azurerestauth": "^0.4.9" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "^12.7.8", | ||
"@typescript-eslint/eslint-plugin": "^2.3.1", | ||
"@typescript-eslint/parser": "^2.3.1", | ||
"coveralls": "^3.0.6", | ||
"eslint": "^6.3.0", | ||
"eslint": "^6.4.0", | ||
"mocha": "^6.2.0", | ||
"nyc": "^14.1.1", | ||
"sinon": "^7.4.2" | ||
"sinon": "^7.5.0", | ||
"typescript": "^3.6.3" | ||
} | ||
} |
@@ -5,3 +5,3 @@ [![Build Status](https://travis-ci.com/warerebel/azureblobstoragehelper.svg?branch=master)](https://travis-ci.com/warerebel/azureblobstoragehelper) | ||
# Intorduction | ||
# Introduction | ||
Module to ease the storing of data in azure gen2 blob storage | ||
@@ -8,0 +8,0 @@ |
@@ -6,3 +6,3 @@ /* eslint-disable no-undef */ | ||
const passthrough = require("stream").PassThrough; | ||
const azureBlobStorage = require("../lib/azureBlobStorage"); | ||
const {AzureBlobStorage} = require("../dist/azureBlobStorage"); | ||
@@ -12,3 +12,3 @@ describe("It provides a convenience wrapper around the Azure blob storage rest api", function(){ | ||
this.beforeEach(function(){ | ||
this.myAzureBlobStorage = new azureBlobStorage("account", "key"); | ||
this.myAzureBlobStorage = new AzureBlobStorage("account", "key"); | ||
}); | ||
@@ -15,0 +15,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
64239
555
9
3
+ Added@warerebel/azurerestauth@0.4.12(transitive)
- Removed@warerebel/azurerestauth@0.2.1(transitive)