Comparing version 0.3.3 to 0.3.4
{ | ||
"name": "mimefuncs", | ||
"description": "Encode and decode quoted printable and base64 strings", | ||
"version": "0.3.3", | ||
"version": "0.3.4", | ||
"main": "src/mimefuncs", | ||
@@ -22,3 +22,3 @@ "homepage": "https://github.com/whiteout-io/mimefuncs", | ||
"dependencies": { | ||
"stringencoding": "https://github.com/whiteout-io/stringencoding/tarball/v0.1.0" | ||
"wo-stringencoding": "~0.1.1" | ||
}, | ||
@@ -37,2 +37,2 @@ "devDependencies": { | ||
} | ||
} | ||
} |
@@ -15,9 +15,5 @@ # MIME Functions | ||
### [Bower](http://bower.io/): | ||
bower install git@github.com:whiteout-io/mimefuncs.git#<TAG NAME> | ||
### [npm](https://www.npmjs.org/): | ||
npm install https://github.com/whiteout-io/mimefuncs/tarball/<TAG NAME> | ||
npm install --save mimefuncs | ||
@@ -24,0 +20,0 @@ ## Usage |
@@ -25,7 +25,7 @@ // Copyright (c) 2013 Andris Reinman | ||
if (typeof define === 'function' && define.amd) { | ||
define(['stringencoding'], function(encoding) { | ||
define(['wo-stringencoding'], function(encoding) { | ||
return factory(encoding.TextEncoder, encoding.TextDecoder, root.btoa); | ||
}); | ||
} else if (typeof exports === 'object') { | ||
var encoding = require('stringencoding'), | ||
var encoding = require('wo-stringencoding'), | ||
btoaShim = function(str) { | ||
@@ -32,0 +32,0 @@ return new Buffer(str, 'binary').toString("base64"); |
@@ -8,3 +8,3 @@ 'use strict'; | ||
'chai': '../node_modules/chai/chai', | ||
'stringencoding': '../node_modules/stringencoding/dist/stringencoding' | ||
'wo-stringencoding': '../node_modules/wo-stringencoding/dist/stringencoding' | ||
} | ||
@@ -11,0 +11,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
Dynamic require
Supply chain riskDynamic require can indicate the package is performing dangerous or unsafe dynamic code execution.
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
HTTP dependency
Supply chain riskContains a dependency which resolves to a remote HTTP URL which could be used to inject untrusted code and reduce overall package reliability.
Found 1 instance in 1 package
Dynamic require
Supply chain riskDynamic require can indicate the package is performing dangerous or unsafe dynamic code execution.
Found 1 instance in 1 package
0
87506
11
1509
306
+ Addedwo-stringencoding@~0.1.1
+ Addedwo-stringencoding@0.1.1(transitive)
- Removedstringencoding@https://github.com/whiteout-io/stringencoding/tarball/v0.1.0