Comparing version 0.1.5 to 0.1.6
@@ -8,3 +8,6 @@ { | ||
"description": "Smith is an RPC agent system for Node.JS used in architect and vfs.", | ||
"version": "0.1.5", | ||
"version": "0.1.6", | ||
"scripts": { | ||
"test": "./test-all.sh" | ||
}, | ||
"licenses" : [{ | ||
@@ -11,0 +14,0 @@ "type" : "MIT", |
@@ -23,7 +23,8 @@ /* | ||
( // Module boilerplate to support browser globals, node.js and AMD. | ||
(typeof module === "object" && function (m) { module.exports = m(require('events').EventEmitter, require('msgpack-js')); }) || | ||
(typeof define === "function" && function (m) { define("smith", ["EventEmitter", "msgpack"], m); }) || | ||
(function (m) { window.smith = m(window.EventEmitter, window.msgpack); }) | ||
)(function (EventEmitter, msgpack) { | ||
(typeof module === "object" && function (m) { module.exports = m(require('events'), require('msgpack-js')); }) || | ||
(typeof define === "function" && function (m) { define("smith", ["events", "msgpack-js"], m); }) || | ||
(function (m) { window.smith = m(window.events, window.msgpack); }) | ||
)(function (events, msgpack) { | ||
"use strict"; | ||
var EventEmitter = events.EventEmitter; | ||
@@ -30,0 +31,0 @@ function inherits(Child, Parent) { |
Sorry, the diff of this file is not supported yet
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
Network access
Supply chain riskThis module accesses the network.
Found 2 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
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 1 instance in 1 package
51731
21
1004
2
2
2
3