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

@cypress/json-schemas

Package Overview
Dependencies
Maintainers
5
Versions
186
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@cypress/json-schemas - npm Package Compare versions

Comparing version 4.2.6 to 4.2.7

15

dist/platform/index.d.ts

@@ -7,2 +7,13 @@ import { osName } from '../objects';

};
export declare type osCpu = {
model: string;
speed: number;
times: {
idle: number;
irq: number;
nice: number;
sys: number;
user: number;
};
};
export declare type TestRunnerPlatformExample100 = {

@@ -14,3 +25,3 @@ osName: osName;

osMemory: osMemory;
osCpus: number;
osCpus: osCpu[];
};

@@ -29,3 +40,3 @@ export declare const testRunnerPlatformExample100: TestRunnerPlatformExample100;

osMemory: osMemory;
osCpus: number;
osCpus: osCpu[];
};

@@ -32,0 +43,0 @@ export declare const platformExample100: PlatformExample100;

38

dist/platform/index.js

@@ -13,3 +13,15 @@ "use strict";

},
osCpus: 2,
osCpus: [
{
model: 'Intel(R) Xeon(R) CPU E5-2680 v2 @ 2.80GHz',
speed: 2800,
times: {
user: 300415800,
nice: 200800,
sys: 94852500,
idle: 649447000,
irq: 0,
},
},
],
};

@@ -60,5 +72,4 @@ exports.TestRunnerPlatform100 = {

osCpus: {
description: 'number of detected CPU cores',
type: ['integer', 'null'],
minimum: 0,
type: 'array',
description: 'Information for every detected CPU core',
},

@@ -89,3 +100,15 @@ },

},
osCpus: 2,
osCpus: [
{
model: 'Intel(R) Xeon(R) CPU E5-2680 v2 @ 2.80GHz',
speed: 2800,
times: {
user: 300415800,
nice: 200800,
sys: 94852500,
idle: 649447000,
irq: 0,
},
},
],
};

@@ -140,5 +163,4 @@ exports.Platform100 = {

osCpus: {
description: 'number of detected CPU cores',
type: ['integer', 'null'],
minimum: 0,
type: 'array',
description: 'Information for every detected CPU core',
},

@@ -145,0 +167,0 @@ },

@@ -23,3 +23,15 @@ "use strict";

},
osCpus: 4,
osCpus: [
{
model: 'Intel(R) Xeon(R) CPU E5-2680 v2 @ 2.80GHz',
speed: 2800,
times: {
user: 300415800,
nice: 200800,
sys: 94852500,
idle: 649447000,
irq: 0,
},
},
],
},

@@ -26,0 +38,0 @@ spec: 'integration/forums_spec.js',

@@ -24,3 +24,15 @@ "use strict";

osVersionFormatted: 'Linux - 16.04',
osCpus: 4,
osCpus: [
{
model: 'Intel(R) Xeon(R) CPU E5-2680 v2 @ 2.80GHz',
speed: 2800,
times: {
user: 300415800,
nice: 200800,
sys: 94852500,
idle: 649447000,
irq: 0,
},
},
],
osMemory: {

@@ -27,0 +39,0 @@ free: 1000,

@@ -121,3 +121,15 @@ "use strict";

},
osCpus: 3,
osCpus: [
{
model: 'Intel(R) Xeon(R) CPU E5-2680 v2 @ 2.80GHz',
speed: 2800,
times: {
user: 300415800,
nice: 200800,
sys: 94852500,
idle: 649447000,
irq: 0,
},
},
],
},

@@ -124,0 +136,0 @@ };

{
"name": "@cypress/json-schemas",
"version": "4.2.6",
"version": "4.2.7",
"description": "Cypress JSON schemas",

@@ -5,0 +5,0 @@ "main": "dist",

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