New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

discordjs-testing

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

discordjs-testing - npm Package Compare versions

Comparing version 0.0.0-beta to 0.0.0-gamma

5

package.json
{
"name": "discordjs-testing",
"version": "0.0.0-beta",
"version": "0.0.0-gamma",
"description": "Helper package for testing DiscordJS bots with Mocha/Chai",

@@ -12,3 +12,4 @@ "main": "prod/index.js",

"test": "ts-mocha -u tdd test/index.spec.ts test/**/*.spec.ts --recursive --timeout 10000",
"prepack": "npm run build"
"prepack": "npm run build",
"prepublishOnly": "npm run build"
},

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

12

prod/mocks/MockMember.d.ts

@@ -52,3 +52,2 @@ import { PermissionsBitField } from "discord.js";

* @public
* @readonly
*/

@@ -59,6 +58,15 @@ get bannable(): boolean;

* @public
* @readonly
*/
set bannable(value: boolean);
/**
* @type {boolean}
* @public
*/
get kickable(): boolean;
/**
* @type {boolean}
* @public
*/
set kickable(value: boolean);
/**
* @type {number}

@@ -65,0 +73,0 @@ * @public

@@ -61,3 +61,2 @@ "use strict";

* @public
* @readonly
*/

@@ -70,4 +69,10 @@ get bannable() {

* @public
* @readonly
*/
set bannable(value) {
this._bannable = value;
}
/**
* @type {boolean}
* @public
*/
get kickable() {

@@ -77,2 +82,9 @@ return this._kickable;

/**
* @type {boolean}
* @public
*/
set kickable(value) {
this._kickable = value;
}
/**
* @type {number}

@@ -79,0 +91,0 @@ * @public

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