Comparing version 0.3.0 to 0.3.1
{ | ||
"name": "v8-debug", | ||
"version": "0.3.0", | ||
"version": "0.3.1", | ||
"description": "v8 debugger extending API", | ||
"homepage": "http://github.com/node-inspector/v8-debug", | ||
"author": "3y3 Ghoti <3y3@bk.ru>", | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com/node-inspector/v8-debug.git" | ||
}, | ||
"license": { | ||
@@ -11,2 +15,9 @@ "name": "BSD", | ||
}, | ||
"binary": { | ||
"module_name" : "debug", | ||
"module_path" : "./build/{module_name}/v{version}/{node_abi}-{platform}-{arch}/", | ||
"remote_path" : "./{module_name}/v{version}/", | ||
"package_name": "{node_abi}-{platform}-{arch}.tar.gz", | ||
"host" : "https://node-inspector.s3.amazonaws.com/" | ||
}, | ||
"keywords": [ | ||
@@ -21,5 +32,8 @@ "v8", | ||
"dependencies": { | ||
"node-pre-gyp": "0.5.x", | ||
"nan": "~1.2.0" | ||
}, | ||
"bundledDependencies":["node-pre-gyp"], | ||
"devDependencies": { | ||
"aws-sdk": "~2.0.0", | ||
"mocha": "~1.20.1", | ||
@@ -29,4 +43,5 @@ "chai": "~1.9.1" | ||
"scripts": { | ||
"install": "node-pre-gyp install --fallback-to-build", | ||
"test": "mocha" | ||
} | ||
} |
@@ -1,2 +0,5 @@ | ||
var binding = require('./build/Release/debug.node'); | ||
var binary = require('node-pre-gyp'); | ||
var path = require('path'); | ||
var binding_path = binary.find(path.resolve(path.join(__dirname,'./package.json'))); | ||
var binding = require(binding_path); | ||
var EventEmitter = require('events').EventEmitter; | ||
@@ -3,0 +6,0 @@ var inherits = require('util').inherits; |
Sorry, the diff of this file is not supported yet
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
Install scripts
Supply chain riskInstall scripts are run when the package is installed. The majority of malware in npm is hidden in install scripts.
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 6 instances 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
Network access
Supply chain riskThis module accesses the network.
Found 7 instances 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
Copyleft License
License(Experimental) Copyleft license information was found.
Found 1 instance in 1 package
Debug access
Supply chain riskUses debug, reflection and dynamic code execution features.
Found 2 instances 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
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 25 instances in 1 package
Filesystem access
Supply chain riskAccesses the file system, and could potentially read sensitive data.
Found 4 instances in 1 package
Mixed license
License(Experimental) Package contains multiple licenses.
Found 1 instance in 1 package
Non-permissive License
License(Experimental) A license not known to be considered permissive was found.
Found 1 instance in 1 package
Unidentified License
License(Experimental) Something that seems like a license was found, but its contents could not be matched with a known license.
Found 4 instances 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
No repository
Supply chain riskPackage does not have a linked source code repository. Without this field, a package will have no reference to the location of the source code use to generate the package.
Found 1 instance in 1 package
3070001
797
58805
2
3
7
70
1
203
39
+ Addednode-pre-gyp@0.5.x