Socket
Socket
Sign inDemoInstall

postman-collection

Package Overview
Dependencies
Maintainers
4
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 0.5.3 to 0.5.4

4

examples/collection-v2.json

@@ -78,3 +78,3 @@ {

"httpOnly": false,
"name": "_ga",
"key": "_ga",
"path": "/",

@@ -147,3 +147,3 @@ "secure": false,

"httpOnly": false,
"name": "_ga",
"key": "_ga",
"path": "/",

@@ -150,0 +150,0 @@ "secure": false,

@@ -30,4 +30,5 @@ var _ = require('../util').lodash,

*
* @property {String=} [name] The name of the cookie. Some call it the "key".
* @property {String=} [expires] Expires sets an expiry date for when a cookie gets deleted. It should either be a
* @property {String=} [key] The name of the cookie. Some call it the "name".
* @property {String=} [value] The value stored in the Cookie
* @property {String=} [expires] Expires sets an expiry date for when a coo0kie gets deleted. It should either be a
* date object or timestamp string of date.

@@ -48,3 +49,2 @@ * @property {Number=} [maxAge] Max-age sets the time in seconds for when a cookie will be deleted.

* the end of an HTTP session.)
* @property {String=} [value] The value stored in the Cookie
* @property {Array=} [extensions] Any extra attributes that are extensions to the original Cookie specification can be

@@ -57,3 +57,3 @@ * specified here.

* {
* name: 'my-cookie-name',
* key: 'my-cookie-name',
* expires: '1464769543832', // UNIX timestamp, in *milliseconds*

@@ -123,3 +123,3 @@ * maxAge: '300' // In seconds. In this case, the Cookie is valid for 5 minutes

*/
name: options.name,
key: options.key,

@@ -240,3 +240,3 @@ /**

nameval = Cookie.splitParam(pairs.shift()); // The first kvp is the name and value
obj.name = nameval.key;
obj.key = nameval.key;
obj.value = nameval.value;

@@ -243,0 +243,0 @@

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

secretAccessKey: params.secretKey,
sessionToken: params.sessionToken
sessionToken: params.sessionToken || undefined
},

@@ -59,0 +59,0 @@ host: request.url.getHost(),

@@ -23,7 +23,7 @@ #!/usr/bin/env node

// for CI, we use simple xunit reporter
if (process.env.CI) {
mochaReporter = 'xunit';
istanbulReport = '--report cobertura';
}
// for CI, we use simple xunit reporter (not on Travis since it does not parse results)
// if (process.env.CI) {
// mochaReporter = 'xunit';
// istanbulReport = '--report cobertura';
// }

@@ -30,0 +30,0 @@ // banner line

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

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

@@ -44,3 +44,3 @@ "postman"

"liquid-json": "0.3.1",
"lodash": "4.16.1",
"lodash": "4.16.2",
"marked": "0.3.6",

@@ -59,6 +59,6 @@ "mime-format": "1.0.2",

"colors": "1.1.2",
"eslint": "3.6.0",
"eslint": "3.7.1",
"eslint-plugin-jsdoc": "2.3.1",
"eslint-plugin-lodash": "1.10.3",
"eslint-plugin-mocha": "4.5.1",
"eslint-plugin-mocha": "4.6.0",
"eslint-plugin-security": "1.2.0",

@@ -77,3 +77,3 @@ "expect.js": "0.3.1",

"mustache": "2.2.1",
"nsp": "2.6.1",
"nsp": "2.6.2",
"packity": "0.3.2",

@@ -80,0 +80,0 @@ "postman-jsdoc-theme": "0.0.2",

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