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

keisatsu

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

keisatsu - npm Package Compare versions

Comparing version 0.0.12 to 0.0.13

1

lib/src/Agent.d.ts

@@ -17,2 +17,3 @@ import Task, { RunResult } from './Task';

get(property: string): any;
has(property: string): boolean;
set(property: string, value: any): void;

@@ -19,0 +20,0 @@ registerTask<T extends Task>(task: {

@@ -27,2 +27,5 @@ "use strict";

}
has(property) {
return this.hasOwnProperty(property);
}
set(property, value) {

@@ -29,0 +32,0 @@ this[property] = value;

@@ -14,3 +14,4 @@ import Agent from './Agent';

get(property: string): any;
has(property: string): boolean;
set(property: string, value: any): void;
}

@@ -26,2 +26,5 @@ "use strict";

}
has(property) {
return this.hasOwnProperty(property);
}
set(property, value) {

@@ -28,0 +31,0 @@ this[property] = value;

2

package.json
{
"name": "keisatsu",
"version": "0.0.12",
"version": "0.0.13",
"description": "Task runner based on yakuza",

@@ -5,0 +5,0 @@ "engines": {

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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