@agoric/evaluate
Advanced tools
Comparing version 1.0.0 to 1.1.0
{ | ||
"name": "@agoric/evaluate", | ||
"version": "1.0.0", | ||
"version": "1.1.0", | ||
"description": "(unsafe) three-argument evaluator function", | ||
@@ -24,3 +24,2 @@ "main": "src/main.js", | ||
"eslint-plugin-react": "^7.14.2", | ||
"esm": "^3.2.5", | ||
"prettier": "^1.16.4", | ||
@@ -30,3 +29,5 @@ "tape": "^4.10.0", | ||
}, | ||
"dependencies": {}, | ||
"dependencies": { | ||
"esm": "^3.2.5" | ||
}, | ||
"author": "Agoric", | ||
@@ -33,0 +34,0 @@ "license": "Apache-2.0", |
@@ -10,3 +10,3 @@ # Evaluate | ||
This repository contains a stub implementation of evaluate. If you really | ||
This repository contains an INSECURE implementation of evaluate. If you really | ||
need it, you will know, and you are on your own. |
@@ -50,2 +50,4 @@ // The evaluate maker, which curries the makerOptions. | ||
// Export the default evaluators. | ||
export const { evaluateExpr, evaluateProgram } = makeEvaluators(); | ||
const { evaluateExpr, evaluateProgram } = makeEvaluators(); | ||
export { evaluateExpr, evaluateProgram }; | ||
export default evaluateExpr; |
@@ -1,1 +0,3 @@ | ||
module.exports = require('./index.js'); | ||
const esmExports = require('esm')(module)('./index.js'); | ||
module.exports = Object.assign(esmExports.default, esmExports); |
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
18826
10
72
1
10
+ Addedesm@^3.2.5
+ Addedesm@3.2.25(transitive)