@agoric/marshal
Advanced tools
Comparing version 0.2.4 to 0.2.5
@@ -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 @@ |
@@ -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" | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
51355
4
11
760
+ Added@agoric/assert@0.0.10(transitive)
+ Added@agoric/eventual-send@0.11.1(transitive)
- Removed@agoric/assert@0.0.9(transitive)
- Removed@agoric/eventual-send@0.10.0(transitive)
Updated@agoric/assert@^0.0.10
Updated@agoric/promise-kit@^0.1.5