Join our webinar on Wednesday, June 26, at 1pm EDTHow Chia Mitigates Risk in the Crypto Industry.Register
Socket
Socket
Sign inDemoInstall

@acot/config

Package Overview
Dependencies
246
Maintainers
1
Versions
37
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.0.2 to 0.0.3-canary.0

6

CHANGELOG.md

@@ -6,2 +6,8 @@ # Change Log

## [0.0.3-canary.0](https://github.com/acot-a11y/acot/compare/@acot/config@0.0.2...@acot/config@0.0.3-canary.0) (2020-12-14)
### Bug Fixes
- Fix omission of version specification in `debug` package ([85f8ea4](https://github.com/acot-a11y/acot/commit/85f8ea44c7b029301dbcd6bceef427fda35972b6))
## [0.0.2](https://github.com/acot-a11y/acot/compare/@acot/config@0.0.2-canary.7...@acot/config@0.0.2) (2020-12-10)

@@ -8,0 +14,0 @@

160

lib/validator/config.validator.d.ts

@@ -190,3 +190,80 @@ import Ajv = require('ajv');

LaunchOptions: {
$ref: string;
};
'Pick<{with?:Record<string,any>;},"with">': {
properties: {
with: {
$ref: string;
};
};
type: string;
};
Record: {
$ref: string;
};
RuleConfig: {
$ref: string;
};
T: {
$ref: string;
};
U: {
type: string;
};
Viewport: {
properties: {
deviceScaleFactor: {
default: number;
description: string;
type: string;
};
hasTouch: {
default: boolean;
description: string;
type: string;
};
height: {
description: string;
type: string;
};
isLandscape: {
default: boolean;
description: string;
type: string;
};
isMobile: {
default: boolean;
description: string;
type: string;
};
width: {
description: string;
type: string;
};
};
required: string[];
type: string;
};
__type: {
type: string;
};
__type_1: {
type: string;
};
__type_2: {
properties: {
command: {
type: string;
};
timeout: {
type: string;
};
};
type: string;
};
__type_3: {
type: string;
};
__type_4: {
properties: {
args: {

@@ -297,7 +374,2 @@ description: string;

};
product: {
$ref: string;
default: string;
description: string;
};
slowMo: {

@@ -319,80 +391,2 @@ description: string;

};
'Pick<{with?:Record<string,any>;},"with">': {
properties: {
with: {
$ref: string;
};
};
type: string;
};
Product: {
enum: string[];
type: string;
};
Record: {
$ref: string;
};
RuleConfig: {
$ref: string;
};
T: {
$ref: string;
};
U: {
type: string;
};
Viewport: {
properties: {
deviceScaleFactor: {
default: number;
description: string;
type: string;
};
hasTouch: {
default: boolean;
description: string;
type: string;
};
height: {
description: string;
type: string;
};
isLandscape: {
default: boolean;
description: string;
type: string;
};
isMobile: {
default: boolean;
description: string;
type: string;
};
width: {
description: string;
type: string;
};
};
required: string[];
type: string;
};
__type: {
type: string;
};
__type_1: {
type: string;
};
__type_2: {
properties: {
command: {
type: string;
};
timeout: {
type: string;
};
};
type: string;
};
__type_3: {
type: string;
};
};

@@ -399,0 +393,0 @@ };

@@ -189,3 +189,80 @@ "use strict";

LaunchOptions: {
$ref: '#/definitions/__type_4',
},
'Pick<{with?:Record<string,any>;},"with">': {
properties: {
with: {
$ref: '#/definitions/T',
},
},
type: 'object',
},
Record: {
$ref: '#/definitions/__type',
},
RuleConfig: {
$ref: '#/definitions/__type_1',
},
T: {
$ref: '#/definitions/__type_3',
},
U: {
type: 'string',
},
Viewport: {
properties: {
deviceScaleFactor: {
default: 1,
description: 'Specify device scale factor (can be thought of as dpr).',
type: 'number',
},
hasTouch: {
default: false,
description: 'Specifies if viewport supports touch events.',
type: 'boolean',
},
height: {
description: 'The page height in pixels.',
type: 'number',
},
isLandscape: {
default: false,
description: 'Specifies if viewport is in landscape mode.',
type: 'boolean',
},
isMobile: {
default: false,
description: 'Whether the `meta viewport` tag is taken into account.',
type: 'boolean',
},
width: {
description: 'The page width in pixels.',
type: 'number',
},
},
required: ['height', 'width'],
type: 'object',
},
__type: {
type: 'object',
},
__type_1: {
type: 'object',
},
__type_2: {
properties: {
command: {
type: 'string',
},
timeout: {
type: 'number',
},
},
type: 'object',
},
__type_3: {
type: 'object',
},
__type_4: {
properties: {
args: {

@@ -298,7 +375,2 @@ description: 'Additional arguments to pass to the browser instance.\nThe list of Chromium flags can be found here.',

},
product: {
$ref: '#/definitions/Product',
default: "'chrome'",
description: 'Which browser to launch.\nAt this time, this is either `chrome` or `firefox`. See also `PUPPETEER_PRODUCT`.',
},
slowMo: {

@@ -320,80 +392,2 @@ description: 'Slows down Puppeteer operations by the specified amount of milliseconds.\nUseful so that you can see what is going on.',

},
'Pick<{with?:Record<string,any>;},"with">': {
properties: {
with: {
$ref: '#/definitions/T',
},
},
type: 'object',
},
Product: {
enum: ['chrome', 'firefox'],
type: 'string',
},
Record: {
$ref: '#/definitions/__type',
},
RuleConfig: {
$ref: '#/definitions/__type_1',
},
T: {
$ref: '#/definitions/__type_3',
},
U: {
type: 'string',
},
Viewport: {
properties: {
deviceScaleFactor: {
default: 1,
description: 'Specify device scale factor (can be thought of as dpr).',
type: 'number',
},
hasTouch: {
default: false,
description: 'Specifies if viewport supports touch events.',
type: 'boolean',
},
height: {
description: 'The page height in pixels.',
type: 'number',
},
isLandscape: {
default: false,
description: 'Specifies if viewport is in landscape mode.',
type: 'boolean',
},
isMobile: {
default: false,
description: 'Whether the `meta viewport` tag is taken into account.',
type: 'boolean',
},
width: {
description: 'The page width in pixels.',
type: 'number',
},
},
required: ['height', 'width'],
type: 'object',
},
__type: {
type: 'object',
},
__type_1: {
type: 'object',
},
__type_2: {
properties: {
command: {
type: 'string',
},
timeout: {
type: 'number',
},
},
type: 'object',
},
__type_3: {
type: 'object',
},
},

@@ -400,0 +394,0 @@ };

{
"name": "@acot/config",
"version": "0.0.2",
"version": "0.0.3-canary.0",
"description": "A module to manipulate configs of acot.",

@@ -35,7 +35,7 @@ "homepage": "https://github.com/acot-a11y/acot/tree/master/packages/config",

"dependencies": {
"@acot/core": "0.0.2",
"@acot/core": "0.0.3-canary.0",
"@acot/module-loader": "0.0.2",
"@acot/reporter": "0.0.2",
"@acot/runner": "0.0.2",
"@acot/types": "0.0.2",
"@acot/reporter": "0.0.3-canary.0",
"@acot/runner": "0.0.3-canary.0",
"@acot/types": "0.0.3-canary.0",
"@acot/utils": "0.0.2",

@@ -59,3 +59,3 @@ "ajv": "^6.12.3",

},
"gitHead": "0213161e3b268d769211bcd75d1d5f7f4e1818ad"
"gitHead": "c571c7f4be438578dc2dbd522013d2cac4f185a4"
}
SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc