Comparing version 27.0.8 to 27.0.9
@@ -16,6 +16,16 @@ /** | ||
var path = require("path"); | ||
var child_process = require('child_process'); | ||
var options = {}; | ||
var isNpm3; | ||
try { | ||
var npmv = child_process.execSync('npm -v').toString('utf8'); | ||
isNpm3 = (npmv.split('.')[0] == '3'); | ||
} catch(error) { | ||
// Better safe than sorry. | ||
isNpm3 = true; | ||
} | ||
try { | ||
parentPackage = require("../../package.json"); | ||
@@ -40,3 +50,3 @@ } catch(error) {} | ||
if (parentPackage && | ||
if (!isNpm3 && parentPackage && | ||
!(parentPackage.dependencies && parentPackage.dependencies["cldr-data"]) && | ||
@@ -43,0 +53,0 @@ !(parentPackage.devDependencies && parentPackage.devDependencies["cldr-data"]) && |
{ | ||
"name": "cldr-data", | ||
"version": "27.0.8", | ||
"version": "27.0.9", | ||
"keywords": [ | ||
@@ -5,0 +5,0 @@ "unicode", |
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
Shell access
Supply chain riskThis module accesses the system shell. Accessing the system shell increases the risk of executing arbitrary code.
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
Native code
Supply chain riskContains native code (e.g., compiled binaries or shared libraries). Including native code can obscure malicious behavior.
Found 1 instance in 1 package
268
15978
11