Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

discord

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

discord - npm Package Compare versions

Comparing version 0.6.3 to 0.6.4

5

package.json
{
"name":"discord",
"description":"A LP/Discworld inspired MUD server running on Node.JS and MooTools.",
"version":"0.6.3",
"version":"0.6.4",
"repository": {

@@ -12,3 +12,4 @@ "type": "git",

"describe":">=0.8.0",
"string-color":">=0.8.0"
"string-color":">=0.8.0",
"glob":">3.0.1"
},

@@ -15,0 +16,0 @@ "author": {

@@ -49,3 +49,4 @@ /**

if (!stream.writable) return;
stream.write(message.style(style).wordwrap(80)+"\r\n");
var brk = (enhanced) ? "\\r\\n" : "\r\n";
stream.write(message.style(style).wordwrap(80)+brk);
});

@@ -57,3 +58,3 @@

var json = JSON.encode(data);
stream.write("<!-- \n"+json+"\n-->\n");
stream.write("<!-- \n"+json+"\n-->\n\\r\\n");
});

@@ -60,0 +61,0 @@

12

tests/run_tests.js

@@ -7,6 +7,10 @@ require(__dirname+'/../engine');

WORLD_PATH = __dirname+"/../example_world/";
(['messaging', 'advanced_parser', 'world']).each(function(test_module) {
require(__dirname+"/tests/"+test_module);
});
process.exit();
var glob = require("glob");
glob(__dirname+"/tests/**/*.js", {cwd: __dirname}, function (er, files) {
files.each(function(f) {
require(__dirname+'/'+f);
});
process.exit();
});
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc