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

@agoric/marshal

Package Overview
Dependencies
Maintainers
5
Versions
156
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@agoric/marshal - npm Package Compare versions

Comparing version 0.2.4 to 0.2.5

8

CHANGELOG.md

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

## [0.2.5](https://github.com/Agoric/agoric-sdk/compare/@agoric/marshal@0.2.4...@agoric/marshal@0.2.5) (2020-09-16)
**Note:** Version bump only for package @agoric/marshal
## [0.2.4](https://github.com/Agoric/agoric-sdk/compare/@agoric/marshal@0.2.3...@agoric/marshal@0.2.4) (2020-08-31)

@@ -8,0 +16,0 @@

3

marshal.js

@@ -1,2 +0,1 @@

/* global harden */
// @ts-check

@@ -22,2 +21,3 @@

* much richer (anything that pureCopy accepts).
*
* @typedef {string} InterfaceSpec

@@ -49,2 +49,3 @@ */

* @param {T} val input value. NOTE: Must be hardened!
* @param {WeakMap<any,any>} [already=new WeakMap()]
* @returns {T} pure, hardened copy

@@ -51,0 +52,0 @@ */

{
"name": "@agoric/marshal",
"version": "0.2.4",
"version": "0.2.5",
"description": "marshal",

@@ -12,2 +12,3 @@ "main": "marshal.js",

"test": "ava",
"test:nyc": "nyc ava",
"pretty-fix": "prettier --write '**/*.js'",

@@ -17,4 +18,5 @@ "pretty-check": "prettier --check '**/*.js'",

"lint-check": "yarn lint",
"lint": "yarn lint:types && eslint '**/*.js'",
"lint:types": "tsc -p jsconfig.json"
"lint": "yarn lint:types && yarn lint:eslint",
"lint:types": "tsc -p jsconfig.json",
"lint:eslint": "eslint '**/*.js'"
},

@@ -35,12 +37,60 @@ "repository": {

"dependencies": {
"@agoric/assert": "^0.0.9",
"@agoric/eventual-send": "^0.10.0",
"@agoric/assert": "^0.0.10",
"@agoric/eventual-send": "^0.11.0",
"@agoric/nat": "^2.0.1",
"@agoric/promise-kit": "^0.1.4"
"@agoric/promise-kit": "^0.1.5"
},
"devDependencies": {
"@agoric/install-ses": "^0.3.0",
"ava": "^3.11.1",
"esm": "^3.2.25"
"@agoric/install-ses": "^0.3.1",
"ava": "^3.12.1",
"esm": "^3.2.25",
"nyc": "^15.1.0"
},
"eslintConfig": {
"extends": [
"airbnb-base",
"plugin:prettier/recommended",
"plugin:jsdoc/recommended"
],
"parser": "@typescript-eslint/parser",
"env": {
"es6": true
},
"globals": {
"harden": "readonly"
},
"rules": {
"implicit-arrow-linebreak": "off",
"function-paren-newline": "off",
"arrow-parens": "off",
"strict": "off",
"prefer-destructuring": "off",
"no-else-return": "off",
"no-console": "off",
"no-unused-vars": [
"error",
{
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_"
}
],
"no-return-assign": "off",
"no-param-reassign": "off",
"no-restricted-syntax": [
"off",
"ForOfStatement"
],
"no-unused-expressions": "off",
"no-loop-func": "off",
"no-inner-declarations": "off",
"import/prefer-default-export": "off",
"import/no-extraneous-dependencies": "off",
"jsdoc/no-undefined-types": "off",
"jsdoc/require-jsdoc": "off",
"jsdoc/require-property-description": "off",
"jsdoc/require-param-description": "off",
"jsdoc/require-returns": "off",
"jsdoc/require-returns-description": "off"
}
},
"publishConfig": {

@@ -57,3 +107,4 @@ "access": "public"

"timeout": "2m"
}
},
"gitHead": "f5ee0a03901539beb8e8f4aca7b20e01bfbf6ab3"
}
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