azure-storage-simple
Advanced tools
+4
-4
| { | ||
| "name": "azure-storage-simple", | ||
| "version": "0.2.1", | ||
| "version": "0.2.2", | ||
| "description": "Simplified Interfaces for Azure Storage Services (Tables, Queues, Blob)", | ||
@@ -39,5 +39,5 @@ "main": "src/index.js", | ||
| "test": "npm run lint && npm run coverage && (npm run coverage-check || node scripts/open-coverage-report)", | ||
| "publish-major": "npm run build && npm version major && npm publish && git push origin master && git push --tags", | ||
| "publish-minor": "npm run build && npm version minor && npm publish && git push origin master && git push --tags", | ||
| "publish-patch": "npm run build && npm version patch && npm publish && git push origin master && git push --tags" | ||
| "publish-major": "npm version major && npm publish && git push origin master && git push --tags", | ||
| "publish-minor": "npm version minor && npm publish && git push origin master && git push --tags", | ||
| "publish-patch": "npm version patch && npm publish && git push origin master && git push --tags" | ||
| }, | ||
@@ -44,0 +44,0 @@ "devDependencies": { |
@@ -1,3 +0,3 @@ | ||
| module.export = function createBlobWrapper(store,key,name) { | ||
| module.exports = function createBlobWrapper(store,key,name) { | ||
| return {}; //nothing yet | ||
| }; |
@@ -11,3 +11,3 @@ var azure = require('azure-storage'); | ||
| //key for caching service instances | ||
| var svcCacheKey = `${store}/${key}`; | ||
| var svcCacheKey = [store,key].join('/'); | ||
@@ -14,0 +14,0 @@ //instance of azure queue service |
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 3 instances in 1 package
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 3 instances in 1 package
18511
-0.25%