Socket
Socket
Sign inDemoInstall

postman-collection

Package Overview
Dependencies
Maintainers
5
Versions
180
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

postman-collection - npm Package Compare versions

Comparing version 3.0.6 to 3.0.7

lib/schema/event-list.json

4

CHANGELOG.md
# Postman Collection SDK Changelog
#### Unreleased
#### v3.0.7 (January 15, 2018)
* :arrow_up: Updated dependencies
* :bug: Improved pre-stringification variable type safety #539

@@ -5,0 +7,0 @@ #### v3.0.6 (November 30, 2017)

@@ -108,3 +108,3 @@ var _ = require('../util').lodash,

var value = this.valueOf();
return _.isFunction(value.toString) ? value.toString() : E;
return value && _.isFunction(value.toString) ? value.toString() : E;
},

@@ -111,0 +111,0 @@

@@ -12,2 +12,3 @@ {

"basic",
"bearer",
"digest",

@@ -17,3 +18,4 @@ "hawk",

"oauth1",
"oauth2"
"oauth2",
"ntlm"
]

@@ -23,2 +25,4 @@ },

"type": "array",
"title": "AWS Signature v4",
"description": "The helper attributes for [AWS Auth](http://docs.aws.amazon.com/AmazonS3/latest/dev/RESTAuthentication.html)",
"items": {

@@ -28,2 +32,3 @@ "oneOf": [

"type": "object",
"description": "AWS Signature V4 calculation requires the AWS Access Key of the AWS IAM user being used. This key is stored in this field.\n *Note: Do not use your AWS root credentials here.*",
"properties": {

@@ -36,2 +41,6 @@ "key": {

"type": "string"
},
"type": {
"type": "string",
"enum": ["string"]
}

@@ -42,2 +51,3 @@ }

"type": "object",
"description": "The AWS Secret key associated with the Access Key is stored in this field.\n *Note: Do not use your AWS root credentials here.*",
"properties": {

@@ -50,2 +60,6 @@ "key": {

"type": "string"
},
"type": {
"type": "string",
"enum": ["string"]
}

@@ -56,2 +70,3 @@ }

"type": "object",
"description": "The AWS region code, must be one of the ones mentioned in the [AWS Documentation](http://docs.aws.amazon.com/general/latest/gr/rande.html)",
"properties": {

@@ -64,2 +79,6 @@ "key": {

"type": "string"
},
"type": {
"type": "string",
"enum": ["string"]
}

@@ -70,2 +89,3 @@ }

"type": "object",
"description": "The AWS Service endpoint. Refer to the [AWS Documentation](http://docs.aws.amazon.com/general/latest/gr/rande.html) for possible values.",
"properties": {

@@ -78,2 +98,6 @@ "key": {

"type": "string"
},
"type": {
"type": "string",
"enum": ["string"]
}

@@ -87,2 +111,4 @@ }

"type": "array",
"title": "Basic Authentication",
"description": "The helper attributes for [Basic Authentication](https://en.wikipedia.org/wiki/Basic_access_authentication)",
"items": {

@@ -92,2 +118,3 @@ "oneOf": [

"type": "object",
"description": "The username to be used for Basic Authentication is stored in this field.",
"properties": {

@@ -100,2 +127,6 @@ "key": {

"type": "string"
},
"type": {
"type": "string",
"enum": ["string"]
}

@@ -106,2 +137,3 @@ }

"type": "object",
"description": "The password to be used for Basic Authentication is stored in this field.",
"properties": {

@@ -114,2 +146,6 @@ "key": {

"type": "string"
},
"type": {
"type": "string",
"enum": ["string"]
}

@@ -121,4 +157,32 @@ }

},
"bearer": {
"type": "array",
"title": "Bearer Token Authentication",
"description": "The helper attributes for [Bearer Token Authentication](https://tools.ietf.org/html/rfc6750)",
"items": {
"oneOf": [
{
"type": "object",
"description": "The token to be used for Bearer Authentication is stored in this field.",
"properties": {
"key": {
"type": "string",
"enum": ["token"]
},
"value": {
"type": "string"
},
"type": {
"type": "string",
"enum": ["string"]
}
}
}
]
}
},
"digest": {
"type": "array",
"title": "Digest Authentication",
"description": "The helper attributes for [Digest Authentication](https://en.wikipedia.org/wiki/Digest_access_authentication).",
"items": {

@@ -128,2 +192,3 @@ "oneOf": [

"type": "object",
"description": "The username to be used for digest Authentication is stored in this field.",
"properties": {

@@ -136,2 +201,6 @@ "key": {

"type": "string"
},
"type": {
"type": "string",
"enum": ["string"]
}

@@ -142,2 +211,3 @@ }

"type": "object",
"description": "The authentication 'realm' is stored in this field. Refer to [RFC 2617](https://tools.ietf.org/html/rfc2617) for details.",
"properties": {

@@ -150,2 +220,6 @@ "key": {

"type": "string"
},
"type": {
"type": "string",
"enum": ["string"]
}

@@ -156,2 +230,3 @@ }

"type": "object",
"description": "The password to be used for digest Authentication is stored in this field.",
"properties": {

@@ -164,2 +239,6 @@ "key": {

"type": "string"
},
"type": {
"type": "string",
"enum": ["string"]
}

@@ -170,2 +249,3 @@ }

"type": "object",
"description": "The digest auth server challenges clients. A nonce is a part of that challenge, stored in this field.",
"properties": {

@@ -178,2 +258,6 @@ "key": {

"type": "string"
},
"type": {
"type": "string",
"enum": ["string"]
}

@@ -184,2 +268,3 @@ }

"type": "object",
"description": "The nonceCount is the hexadecimal count of the number of requests (including the current request) that the client has sent with the nonce value in this request.",
"properties": {

@@ -192,2 +277,6 @@ "key": {

"type": "string"
},
"type": {
"type": "string",
"enum": ["string"]
}

@@ -198,2 +287,3 @@ }

"type": "object",
"description": "The algorithm to be used to sign the request.",
"properties": {

@@ -206,2 +296,6 @@ "key": {

"type": "string"
},
"type": {
"type": "string",
"enum": ["string"]
}

@@ -212,2 +306,3 @@ }

"type": "object",
"description": "Indicates the 'quality of protection' applied by the client to the message.",
"properties": {

@@ -220,2 +315,6 @@ "key": {

"type": "string"
},
"type": {
"type": "string",
"enum": ["string"]
}

@@ -226,2 +325,3 @@ }

"type": "object",
"description": "A string of data, specified by the server, which should be returned by the client unchanged.",
"properties": {

@@ -234,2 +334,6 @@ "key": {

"type": "string"
},
"type": {
"type": "string",
"enum": ["string"]
}

@@ -240,2 +344,3 @@ }

"type": "object",
"description": "A client nonce enhances the security of HTTP Digest Authentication, and it is stored in this field.",
"properties": {

@@ -248,4 +353,26 @@ "key": {

"type": "string"
},
"type": {
"type": "string",
"enum": ["string"]
}
}
},
{
"type": "object",
"description": "When set to true, disables interactive replay mode for the parent request.",
"properties": {
"key": {
"type": "string",
"enum": ["disableRetryRequest"]
},
"value": {
"type": "boolean",
"default": false
},
"type": {
"type": "string",
"enum": ["boolean"]
}
}
}

@@ -257,2 +384,4 @@ ]

"type": "array",
"title": "Hawk Authentication",
"description": "Helper attributes for [Hawk Authentication](https://github.com/hueniverse/hawk)",
"items": {

@@ -262,2 +391,3 @@ "oneOf": [

"type": "object",
"description": "Hawk Authentication requires a client identifier to be passed to the server. This field contains that identifier.",
"properties": {

@@ -270,2 +400,6 @@ "key": {

"type": "string"
},
"type": {
"type": "string",
"enum": ["string"]
}

@@ -276,2 +410,3 @@ }

"type": "object",
"description": "The secret that's shared by the server and the client. It is recommended to use an environment variable here, and set the value in your environment.",
"properties": {

@@ -284,2 +419,6 @@ "key": {

"type": "string"
},
"type": {
"type": "string",
"enum": ["string"]
}

@@ -290,2 +429,3 @@ }

"type": "object",
"description": "The hashing algorithm used in the Hawk authenticated request is stored in this field.",
"properties": {

@@ -298,2 +438,6 @@ "key": {

"type": "string"
},
"type": {
"type": "string",
"enum": ["string"]
}

@@ -304,2 +448,3 @@ }

"type": "object",
"description": "One can optionally send their username (if available) to the Hawk protected endpoint. This field holds the value, if given.",
"properties": {

@@ -312,2 +457,6 @@ "key": {

"type": "string"
},
"type": {
"type": "string",
"enum": ["string"]
}

@@ -318,2 +467,3 @@ }

"type": "object",
"description": "The Hawk Auth server challenges clients. A nonce is a part of that challenge, stored in this field.",
"properties": {

@@ -326,2 +476,6 @@ "key": {

"type": "string"
},
"type": {
"type": "string",
"enum": ["string"]
}

@@ -332,2 +486,3 @@ }

"type": "object",
"description": "This field stores metadata for authentication current request.",
"properties": {

@@ -340,2 +495,6 @@ "key": {

"type": "string"
},
"type": {
"type": "string",
"enum": ["string", "number", "boolean", "any"]
}

@@ -346,2 +505,3 @@ }

"type": "object",
"description": "Serves to identify the backend app in case multiple ones are supported. This field is optional.",
"properties": {

@@ -354,2 +514,6 @@ "key": {

"type": "string"
},
"type": {
"type": "string",
"enum": ["string"]
}

@@ -360,2 +524,3 @@ }

"type": "object",
"description": "This field is used when Hawk auth is used as a part of a larger protocol and serves as a place for handling complex scenarios such as access delegation.",
"properties": {

@@ -368,2 +533,6 @@ "key": {

"type": "string"
},
"type": {
"type": "string",
"enum": ["string"]
}

@@ -374,2 +543,3 @@ }

"type": "object",
"description": "The timestamp for the current Hawk Authentication request is stored in this field.",
"properties": {

@@ -382,2 +552,6 @@ "key": {

"type": "string"
},
"type": {
"type": "string",
"enum": ["string"]
}

@@ -389,2 +563,97 @@ }

},
"ntlm": {
"type": "array",
"title": "NTLM Authentication",
"description": "Helper attributes for [NTLM Authentication](https://msdn.microsoft.com/en-us/library/cc237488.aspx)",
"items": {
"oneOf": [
{
"type": "object",
"description": "The username to be used for NTLM Authentication is stored in this field.",
"properties": {
"key": {
"type": "string",
"enum": ["username"]
},
"value": {
"type": "string"
},
"type": {
"type": "string",
"enum": ["string"]
}
}
},
{
"type": "object",
"description": "The password to be used for NTLM Authentication is stored in this field.",
"properties": {
"key": {
"type": "string",
"enum": ["password"]
},
"value": {
"type": "string"
},
"type": {
"type": "string",
"enum": ["string"]
}
}
},
{
"type": "object",
"description": "The domain to be used for NTLM Authentication is stored in this field.",
"properties": {
"key": {
"type": "string",
"enum": ["domain"]
},
"value": {
"type": "string"
},
"type": {
"type": "string",
"enum": ["string"]
}
}
},
{
"type": "object",
"description": "The workstation to be used for NTLM Authentication is stored in this field.",
"properties": {
"key": {
"type": "string",
"enum": ["workstation"]
},
"value": {
"type": "string"
},
"type": {
"type": "string",
"enum": ["string"]
}
}
},
{
"type": "object",
"description": "When set to true, disables interactive replay mode for the parent request.",
"properties": {
"key": {
"type": "string",
"enum": ["disableRetryRequest"]
},
"value": {
"type": "boolean",
"default": false
},
"type": {
"type": "string",
"enum": ["boolean"]
}
}
}
]
}
},
// Allow anything in No auth

@@ -394,2 +663,4 @@ "noauth": {},

"type": "array",
"title": "OAuth1",
"description": "Helper attributes for [OAuth2](https://oauth.net/1/)",
"items": {

@@ -399,2 +670,3 @@ "oneOf": [

"type": "object",
"description": "The oAuth1 Consumer Secret, along with the Consumer Key authenticates the client. This field holds the oAuth1 Consumer Key.",
"properties": {

@@ -407,2 +679,6 @@ "key": {

"type": "string"
},
"type": {
"type": "string",
"enum": ["string"]
}

@@ -413,2 +689,3 @@ }

"type": "object",
"description": "The oAuth1 Consumer Secret, along with the Consumer Key authenticates the client. The consumer secret is stored in this field.",
"properties": {

@@ -421,2 +698,6 @@ "key": {

"type": "string"
},
"type": {
"type": "string",
"enum": ["string"]
}

@@ -427,2 +708,3 @@ }

"type": "object",
"description": "The request token is a temporary credential, and is stored by Postman in this field.",
"properties": {

@@ -435,2 +717,6 @@ "key": {

"type": "string"
},
"type": {
"type": "string",
"enum": ["string"]
}

@@ -441,2 +727,3 @@ }

"type": "object",
"description": "Like the token, the request token secret is a temporary credential stored for the current authentication request.",
"properties": {

@@ -449,2 +736,6 @@ "key": {

"type": "string"
},
"type": {
"type": "string",
"enum": ["string"]
}

@@ -455,2 +746,3 @@ }

"type": "object",
"description": "The name of the signature method used by the client to sign the request is stored in this field.",
"properties": {

@@ -463,2 +755,6 @@ "key": {

"type": "string"
},
"type": {
"type": "string",
"enum": ["string"]
}

@@ -469,2 +765,3 @@ }

"type": "object",
"description": "The timestamp associated with the current authentication request is stored in this field.",
"properties": {

@@ -477,2 +774,6 @@ "key": {

"type": "string"
},
"type": {
"type": "string",
"enum": ["string"]
}

@@ -483,2 +784,3 @@ }

"type": "object",
"description": "A nonce is a random string, uniquely generated by the client to allow the server to verify that a request has never been made before and helps prevent replay attacks when requests are made over a non-secure channel.",
"properties": {

@@ -491,2 +793,6 @@ "key": {

"type": "string"
},
"type": {
"type": "string",
"enum": ["string"]
}

@@ -497,2 +803,3 @@ }

"type": "object",
"description": "The oAuth version, usually, this is ``1.0`` for OAuth-1. For OAuth 2, use the dedicated OAuth 2.0 authentication helper instead.",
"properties": {

@@ -505,2 +812,6 @@ "key": {

"type": "string"
},
"type": {
"type": "string",
"enum": ["string"]
}

@@ -511,2 +822,3 @@ }

"type": "object",
"description": "The realm directive is required for all authentication schemes that issue a challenge. Refer to [RFC 2617](http://tools.ietf.org/html/rfc2617#section-1.2) for more details.",
"properties": {

@@ -519,2 +831,6 @@ "key": {

"type": "string"
},
"type": {
"type": "string",
"enum": ["string"]
}

@@ -525,2 +841,3 @@ }

"type": "object",
"description": "This indicates whether or not to encode the request signature.",
"properties": {

@@ -532,5 +849,45 @@ "key": {

"value": {
"type": "string"
"type": "boolean"
},
"type": {
"type": "string",
"enum": ["boolean"]
}
}
},
{
"type": "object",
"description": "This indicates whether or not to add the authorization params to the Authorization header.",
"properties": {
"key": {
"type": "string",
"enum": ["addParamsToHeader"]
},
"value": {
"type": "boolean",
"default": false
},
"type": {
"type": "string",
"enum": ["boolean"]
}
}
},
{
"type": "object",
"description": "This indicates whether or not to include empty valued parameters in the request signature.",
"properties": {
"key": {
"type": "string",
"enum": ["addEmptyParamsToSign"]
},
"value": {
"type": "boolean",
"default": false
},
"type": {
"type": "string",
"enum": ["boolean"]
}
}
}

@@ -542,2 +899,4 @@ ]

"type": "array",
"title": "OAuth2",
"description": "Helper attributes for [OAuth2](https://oauth.net/2/)",
"items": {

@@ -547,9 +906,14 @@ "oneOf": [

"type": "object",
"description": "The access token for the current request is stored in this field.",
"properties": {
"key": {
"type": "string",
"enum": ["addTokenTo"]
"enum": ["accessToken"]
},
"value": {
"type": "string"
},
"type": {
"type": "string",
"enum": ["string"]
}

@@ -560,5 +924,24 @@ }

"type": "object",
"description": "The specifier for token handling behaviour is stored in this field.",
"properties": {
"key": {
"type": "string",
"enum": ["addTokenTo"]
},
"value": {
"type": "string",
"enum": ["header", "queryParams"]
},
"type": {
"type": "string",
"enum": ["string"]
}
}
},
{
"type": "object",
"description": "This field contains the URL that has to be hit when the authentication process has completed.",
"properties": {
"key": {
"type": "string",
"enum": ["callBackUrl"]

@@ -568,2 +951,6 @@ },

"type": "string"
},
"type": {
"type": "string",
"enum": ["string"]
}

@@ -574,2 +961,3 @@ }

"type": "object",
"description": "The OAuth2 providers URL is stored in this field.",
"properties": {

@@ -582,2 +970,6 @@ "key": {

"type": "string"
},
"type": {
"type": "string",
"enum": ["string"]
}

@@ -588,2 +980,3 @@ }

"type": "object",
"description": "The URL to fetch access tokens is stored in this field.",
"properties": {

@@ -596,2 +989,6 @@ "key": {

"type": "string"
},
"type": {
"type": "string",
"enum": ["string"]
}

@@ -602,2 +999,3 @@ }

"type": "object",
"description": "The unique client ID associated with the authentication request is stored in this field.",
"properties": {

@@ -610,2 +1008,6 @@ "key": {

"type": "string"
},
"type": {
"type": "string",
"enum": ["string"]
}

@@ -616,2 +1018,3 @@ }

"type": "object",
"description": "The client secret associated with the current authentication request is stored in this field.",
"properties": {

@@ -624,2 +1027,6 @@ "key": {

"type": "string"
},
"type": {
"type": "string",
"enum": ["string"]
}

@@ -630,5 +1037,42 @@ }

"type": "object",
"description": "The client authentication associated with the current authentication request is stored in this field.",
"properties": {
"key": {
"type": "string",
"enum": ["clientAuth"]
},
"value": {
"type": "string",
"enum": ["body", "header"]
},
"type": {
"type": "string",
"enum": ["string"]
}
}
},
{
"type": "object",
"description": "The grant type associated with the current authentication request is stored in this field.",
"properties": {
"key": {
"type": "string",
"enum": ["grantType"]
},
"value": {
"type": "string",
"enum": ["authorization_code", "implicit", "password_credentials", "client_credentials"]
},
"type": {
"type": "string",
"enum": ["string"]
}
}
},
{
"type": "object",
"description": "This field is used to specify the access privileges requested from the OAuth provider by the authentication request.",
"properties": {
"key": {
"type": "string",
"enum": ["scope"]

@@ -638,2 +1082,6 @@ },

"type": "string"
},
"type": {
"type": "string",
"enum": ["string"]
}

@@ -644,11 +1092,84 @@ }

"type": "object",
"description": "This field is used to specify the OAuth2 provider username for the current request.",
"properties": {
"key": {
"type": "string",
"enum": ["requestAccessTokenLocally"]
"enum": ["username"]
},
"value": {
"type": "string"
},
"type": {
"type": "string",
"enum": ["string"]
}
}
},
{
"type": "object",
"description": "This field is used to specify the OAuth2 provider password for the current request.",
"properties": {
"key": {
"type": "string",
"enum": ["password"]
},
"value": {
"type": "string"
},
"type": {
"type": "string",
"enum": ["string"]
}
}
},
{
"type": "object",
"description": "This field is used to specify the OAuth2 token type for the current request.",
"properties": {
"key": {
"type": "string",
"enum": ["tokenType"]
},
"value": {
"type": "string"
},
"type": {
"type": "string",
"enum": ["string"]
}
}
},
{
"type": "object",
"description": "This field is used to specify the redirection URL for OAuth2 authentication.",
"properties": {
"key": {
"type": "string",
"enum": ["redirectUri"]
},
"value": {
"type": "string"
},
"type": {
"type": "string",
"enum": ["string"]
}
}
},
{
"type": "object",
"description": "This field is used to specify the refresh token for OAuth2 authentication.",
"properties": {
"key": {
"type": "string",
"enum": ["refreshToken"]
},
"value": {
"type": "string"
},
"type": {
"type": "string",
"enum": ["string"]
}
}
}

@@ -655,0 +1176,0 @@ ]

@@ -7,39 +7,3 @@ {

"info": {
"$schema": "http://json-schema.org/draft-04/schema",
"id": "#/definitions/info",
"title": "Information",
"description": "Detailed description of the info block",
"type": "object",
"properties": {
"name": {
"type": "string",
"title": "Name of the collection",
"description": "A collection's friendly name is defined by this field. You would want to set this field to a value that would allow you to easily identify this collection among a bunch of other collections, as such outlining its usage or content."
},
"_postman_id": {
"type": "string",
"description": "Every collection is identified by the unique value of this field. The value of this field is usually easiest to generate using a UID generator function. If you already have a collection, it is recommended that you maintain the same id since changing the id usually implies that is a different collection than it was originally.\n *Note: This field exists for compatibility reasons with Collection Format V1.*"
},
"description": {
"$ref": "#/definitions/description"
},
"version": {
"oneOf": [
{
"$ref": "#/definitions/version"
},
{
"type": "string"
}
]
},
"schema": {
"description": "This should ideally hold a link to the Postman schema that is used to validate this collection. E.g: https://schema.getpostman.com/collection/v1",
"type": "string"
}
},
"required": [
"name",
"schema"
]
"$ref": "#/definitions/info"
},

@@ -62,17 +26,12 @@ "item": {

"event": {
"description": "Postman allows you to configure scripts to run when specific events occur. These scripts are stored here, and can be referenced in the collection by their ID.",
"type": "array",
"items": {
"$ref": "#/definitions/event"
}
"$ref": "#/definitions/event-list"
},
"variable": {
"description": "Collection variables allow you to define a set of variables, that are a *part of the collection*, as opposed to environments, which are separate entities.\n*Note: Collection variables must not contain any sensitive information.*",
"type": "array",
"items": {
"$ref": "#/definitions/variable"
}
"$ref": "#/definitions/variable-list"
},
"auth": {
"$ref": "#/definitions/auth"
"oneOf": [
{ "type": "null" },
{ "$ref": "#/definitions/auth" }
]
}

@@ -84,2 +43,2 @@ },

]
}
}

@@ -5,6 +5,9 @@ {

"title": "Event",
"description": "An Event",
// TODO: Add detailed description
"description": "Defines a script associated with an associated event name",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "A unique identifier for the enclosing event."
},
"listen": {

@@ -19,2 +22,3 @@ "type": "string",

"type": "boolean",
"default": false,
"description": "Indicates whether the event is disabled. If absent, the event is assumed to be enabled."

@@ -21,0 +25,0 @@ }

@@ -14,2 +14,10 @@ {

"description": "The value (or the RHS) of the Header is stored in this field."
},
"disabled": {
"type": "boolean",
"default": false,
"description": "If set to true, the current header will not be sent with requests."
},
"description": {
"$ref": "#/definitions/description"
}

@@ -16,0 +24,0 @@ },

@@ -21,37 +21,3 @@ {

"version": {
"oneOf": [
{
"type": "object",
"title": "Version",
"description": "Postman allows you to version your collections as they grow, and this field holds the version number. While optional, it is recommended that you use this field to its fullest extent!",
"properties": {
"major": {
"description": "Increment this number if you make changes to the collection that changes its behaviour. E.g: Removing or adding new test scripts. (partly or completely).",
"type": "string"
},
"minor": {
"description": "You should increment this number if you make changes that will not break anything that uses the collection. E.g: removing a folder.",
"type": "string"
},
"patch": {
"description": "Ideally, minor changes to a collection should result in the increment of this number.",
"type": "string"
},
"identifier": {
"description": "A human friendly identifier to make sense of the version numbers. E.g: 'beta-3'",
"type": "string",
"maxLength": 10
},
"meta": {}
},
"required": [
"major",
"minor",
"patch"
]
},
{
"type": "string"
}
]
"$ref": "#/definitions/version"
},

@@ -58,0 +24,0 @@ "schema": {

@@ -5,3 +5,3 @@ {

"author": "Postman Labs <help@getpostman.com>",
"version": "3.0.6",
"version": "3.0.7",
"keywords": [

@@ -51,8 +51,8 @@ "postman"

"async": "2.6.0",
"browserify": "14.5.0",
"browserify": "15.1.0",
"btoa": "1.1.2",
"chalk": "2.3.0",
"dependency-check": "2.9.1",
"eslint": "4.12.0",
"eslint-plugin-jsdoc": "3.2.0",
"dependency-check": "2.10.0",
"eslint": "4.15.0",
"eslint-plugin-jsdoc": "3.3.1",
"eslint-plugin-lodash": "2.5.0",

@@ -65,9 +65,9 @@ "eslint-plugin-mocha": "4.11.0",

"jsdoc": "3.5.5",
"jsdoc-to-markdown": "3.0.2",
"karma": "1.7.1",
"karma-browserify": "5.1.2",
"jsdoc-to-markdown": "3.0.4",
"karma": "2.0.0",
"karma-browserify": "5.1.3",
"karma-chrome-launcher": "2.2.0",
"karma-mocha": "1.3.0",
"karma-mocha-reporter": "2.2.5",
"mocha": "4.0.1",
"mocha": "4.1.0",
"mustache": "2.3.0",

@@ -78,7 +78,7 @@ "nsp": "2.8.1",

"postman-jsdoc-theme": "0.0.3",
"postman-request": "2.81.1-postman.3",
"postman-request": "2.81.1-postman.4",
"recursive-readdir": "2.2.1",
"require-all": "2.2.0",
"schema-compiler": "0.0.3",
"shelljs": "0.7.8",
"shelljs": "0.8.0",
"strip-json-comments": "2.0.1",

@@ -85,0 +85,0 @@ "tv4": "1.3.0",

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