{"maintainers":[{"name":"anonymous","email":"p.simek@make.com"}],"keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"dist-tags":{"latest":"3.10.5"},"author":{"name":"Patrik Simek","url":"https://patriksimek.cz"},"description":"vm2 is a sandbox that can run untrusted code with whitelisted Node's built-in modules.","readme":"# vm2 [![NPM Version][npm-image]][npm-url] [![NPM Downloads][downloads-image]][downloads-url] [![License][license-image]][license-url] [![Node.js CI](https://github.com/patriksimek/vm2/actions/workflows/test.yml/badge.svg)](https://github.com/patriksimek/vm2/actions/workflows/test.yml) [![Known Vulnerabilities][snyk-image]][snyk-url]\n\nvm2 is a sandbox that can run untrusted code with whitelisted Node's built-in modules.\n\n## Important Security Disclaimer\n\n**Before using vm2, you should understand how it works and its limitations.**\n\nvm2 attempts to sandbox untrusted JavaScript code **within the same Node.js process** as your application. It does this through a complex network of [Proxies](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Proxy) that intercept and mediate every interaction between the sandbox and the host environment.\n\n### The Fundamental Challenge\n\nJavaScript is an extraordinarily dynamic language. Objects can be accessed through prototype chains, constructors can be reached via error objects, symbols provide protocol hooks, and async execution creates timing windows. The sheer number of ways to traverse from one object to another in JavaScript makes building an airtight in-process sandbox extremely difficult.\n\n**We are honest about this reality:** Despite our best efforts, researchers and security professionals continuously discover new ways to escape the vm2 sandbox. We actively patch these vulnerabilities as they are reported, but the cat-and-mouse nature of in-process sandboxing means that:\n\n1. **New bypasses will likely be discovered in the future.** Check our [security advisories](https://github.com/patriksimek/vm2/security/advisories) for known vulnerabilities.\n2. **You must keep vm2 updated** to benefit from the latest security fixes. Subscribe to security advisories and update promptly.\n3. **vm2 should not be your only line of defense.** Defense in depth is essential when running untrusted code.\n\n### More Robust Alternatives\n\nIf you require stronger isolation guarantees, consider these alternatives that provide **true process or hardware-level isolation**:\n\n| Solution | Approach | Performance | Trade-offs |\n|----------|----------|-------------|------------|\n| **[isolated-vm](https://github.com/laverdet/isolated-vm)** | Separate V8 isolates (different V8 heap) | Fast | In maintenance mode; requires manual V8 updates |\n| **Separate process / Worker** | `child_process` or Worker threads with limited permissions | Medium | Higher IPC overhead; data must be serialized |\n| **Containers / VMs** | Docker, gVisor, Firecracker | Slow | Startup overhead; resource-heavy |\n| **Managed services** | Cloud-based code execution (e.g., AWS Lambda, Cloudflare Workers) | Variable | Network latency; external dependency |\n\n### When vm2 May Still Be Appropriate\n\nvm2 can be suitable when:\n- You need tight integration with host objects and fast synchronous communication\n- The untrusted code comes from a relatively trusted source (e.g., internal tools, plugin systems with vetted authors)\n- You combine vm2 with other security layers (network isolation, filesystem restrictions, resource limits)\n- You accept the risk and actively monitor for security updates\n\n**If you're running code from completely untrusted sources (e.g., arbitrary user submissions), we strongly recommend using a solution with stronger isolation guarantees.**\n\n## Features\n\n-   Runs untrusted code securely in a single process with your code side by side\n-   Full control over the sandbox's console output\n-   The sandbox has limited access to the process's methods\n-   It is possible to require modules (built-in and external) from the sandbox\n-   You can limit access to certain (or all) built-in modules\n-   You can securely call methods and exchange data and callbacks between sandboxes\n-   Actively maintained with patches for known escape methods (see [Security Disclaimer](#important-security-disclaimer))\n-   Transpiler support\n\n## How does it work\n\n-   It uses the internal VM module to create a secure context.\n-   It uses [Proxies](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Proxy) to prevent escaping from the sandbox.\n-   It overrides the built-in require to control access to modules.\n\nFor an in-depth look at vm2’s internals, see the [CONTRIBUTING.md](./CONTRIBUTING.md) file.\n\n## What is the difference between Node's vm and vm2?\n\nTry it yourself:\n\n```js\nimport { runInNewContext } from \"node:vm\";\n\nrunInNewContext('this.constructor.constructor(\"return process\")().exit()');\nconsole.log('Never gets executed.');\n```\n\n```js\nimport { VM } from 'vm2';\n\nnew VM().run('this.constructor.constructor(\"return process\")().exit()');\n// Throws ReferenceError: process is not defined\n```\n\n## Installation\n\n```sh\nnpm install vm2\n```\n\n## Quick Examples\n\n```js\nimport { VM } from 'vm2';\n\nconst vm = new VM();\nvm.run(`process.exit()`); // TypeError: process.exit is not a function\n```\n\n```js\nimport { NodeVM } from 'vm2';\n\nconst vm = new NodeVM({\n\trequire: {\n\t\texternal: true,\n\t\troot: './',\n\t},\n});\n\nvm.run(\n\t`\n    var request = require('request');\n    request('http://www.google.com', function (error, response, body) {\n        console.error(error);\n        if (!error && response.statusCode == 200) {\n            console.log(body); // Show the HTML for the Google homepage.\n        }\n    });\n`,\n\t'vm.js',\n);\n```\n\n## Documentation\n\n-   [VM](#vm)\n-   [NodeVM](#nodevm)\n-   [VMScript](#vmscript)\n-   [Error handling](#error-handling)\n-   [Debugging a sandboxed code](#debugging-a-sandboxed-code)\n-   [Read-only objects](#read-only-objects-experimental)\n-   [Protected objects](#protected-objects-experimental)\n-   [Cross-sandbox relationships](#cross-sandbox-relationships)\n-   [CLI](#cli)\n-   [2.x to 3.x changes](https://github.com/patriksimek/vm2/wiki/2.x-to-3.x-changes)\n-   [1.x and 2.x docs](https://github.com/patriksimek/vm2/wiki/1.x-and-2.x-docs)\n-   [Contributing](https://github.com/patriksimek/vm2/wiki/Contributing)\n\n## VM\n\nVM is a simple sandbox to synchronously run untrusted code without the `require` feature. Only JavaScript built-in objects and Node's `Buffer` are available. Scheduling functions (`setInterval`, `setTimeout` and `setImmediate`) are not available by default.\n\n**Options:**\n\n-   `timeout` - Script timeout in milliseconds. **WARNING**: You might want to use this option together with `allowAsync=false`. Further, operating on returned objects from the sandbox can run arbitrary code and circumvent the timeout. One should test if the returned object is a primitive with `typeof` and fully discard it (doing logging or creating error messages with such an object might also run arbitrary code again) in the other case.\n-   `sandbox` - VM's global object.\n-   `compiler` - `javascript` (default), `typescript`, `coffeescript` or custom compiler function. The library expects you to have compiler pre-installed if the value is set to `typescript` or `coffeescript`.\n-   `eval` - If set to `false` any calls to `eval` or function constructors (`Function`, `GeneratorFunction`, etc.) will throw an `EvalError` (default: `true`).\n-   `wasm` - If set to `false` any attempt to compile a WebAssembly module will throw a `WebAssembly.CompileError` (default: `true`). Note: `WebAssembly.JSTag` is removed inside the sandbox for security reasons, so wasm code cannot catch JavaScript exceptions.\n-   `allowAsync` - If set to `false` any attempt to run code using `async` will throw a `VMError` (default: `true`).\n\n**IMPORTANT**: Timeout is only effective on synchronous code that you run through `run`. Timeout does **NOT** work on any method returned by VM. There are some situations when timeout doesn't work - see [#244](https://github.com/patriksimek/vm2/pull/244).\n\n```js\nimport { VM } from 'vm2';\n\nconst vm = new VM({\n\ttimeout: 1000,\n\tallowAsync: false,\n\tsandbox: {},\n});\n\nvm.run('process.exit()'); // throws ReferenceError: process is not defined\n```\n\nYou can also retrieve values from VM.\n\n```js\nlet number = vm.run('1337'); // returns 1337\n```\n\n**TIP**: See tests for more usage examples.\n\n## NodeVM\n\nUnlike `VM`, `NodeVM` allows you to require modules in the same way that you would in the regular Node's context.\n\n**Options:**\n\n-   `console` - `inherit` to enable console, `redirect` to redirect to events, `off` to disable console (default: `inherit`).\n-   `sandbox` - VM's global object.\n-   `compiler` - `javascript` (default), `typescript`, `coffeescript` or custom compiler function (which receives the code, and it's file path). The library expects you to have compiler pre-installed if the value is set to `typescript` or `coffeescript`.\n-   `eval` - If set to `false` any calls to `eval` or function constructors (`Function`, `GeneratorFunction`, etc.) will throw an `EvalError` (default: `true`).\n-   `wasm` - If set to `false` any attempt to compile a WebAssembly module will throw a `WebAssembly.CompileError` (default: `true`). Note: `WebAssembly.JSTag` is removed inside the sandbox for security reasons, so wasm code cannot catch JavaScript exceptions.\n-   `sourceExtensions` - Array of file extensions to treat as source code (default: `['js']`).\n-   `require` - `true`, an object or a Resolver to enable `require` method (default: `false`).\n-   `require.external` - Values can be `true`, an array of allowed external modules, or an object (default: `false`). All paths matching `/node_modules/${any_allowed_external_module}/(?!/node_modules/)` are allowed to be required.\n-   `require.external.modules` - Array of allowed external modules. Also supports wildcards, so specifying `['@scope/*-ver-??]`, for instance, will allow using all modules having a name of the form `@scope/something-ver-aa`, `@scope/other-ver-11`, etc. The `*` wildcard does not match path separators.\n-   `require.external.transitive` - Boolean which indicates if transitive dependencies of external modules are allowed (default: `false`). **WARNING**: When a module is required transitively, any module is then able to require it normally, even if this was not possible before it was loaded.\n-   `require.builtin` - Array of allowed built-in modules, accepts [\"\\*\"] for all (default: none). **WARNING**: \"\\*\" can be dangerous as new built-ins can be added.\n-   `require.root` - Restricted path(s) where local modules can be required (default: every path).\n-   `require.mock` - Collection of mock modules (both external or built-in).\n-   `require.context` - `host` (default) to require modules in the host and proxy them into the sandbox. `sandbox` to load, compile, and require modules in the sandbox. `callback(moduleFilename, ext)` to dynamically choose a context per module. The default will be sandbox is nothing is specified. Except for `events`, built-in modules are always required in the host and proxied into the sandbox.\n-   `require.import` - An array of modules to be loaded into NodeVM on start.\n-   `require.resolve` - An additional lookup function in case a module wasn't found in one of the traditional node lookup paths.\n-   `require.customRequire` - Use instead of the `require` function to load modules from the host.\n-   `require.strict` - `false` to not force strict mode on modules loaded by require (default: `true`).\n-   `require.fs` - Custom file system implementation.\n-   `nesting` - **WARNING**: Allowing this is a security risk as scripts can create a NodeVM which can require any host module. `true` to enable VMs nesting (default: `false`).\n-   `wrapper` - `commonjs` (default) to wrap script into CommonJS wrapper, `none` to retrieve value returned by the script.\n-   `argv` - Array to be passed to `process.argv`.\n-   `env` - Object to be passed to `process.env`.\n-   `strict` - `true` to loaded modules in strict mode (default: `false`).\n\n**IMPORTANT**: Timeout is not effective for NodeVM so it is not immune to `while (true) {}` or similar evil.\n\n**REMEMBER**: The more modules you allow, the more fragile your sandbox becomes.\n\n```js\nimport { NodeVM } from 'vm2';\n\nconst vm = new NodeVM({\n\tconsole: 'inherit',\n\tsandbox: {},\n\trequire: {\n\t\texternal: true,\n\t\tbuiltin: ['fs', 'path'],\n\t\troot: './',\n\t\tmock: {\n\t\t\tfs: {\n\t\t\t\treadFileSync: () => 'Nice try!',\n\t\t\t},\n\t\t},\n\t},\n});\n\n// Sync\n\nlet functionInSandbox = vm.run('module.exports = function(who) { console.log(\"hello \"+ who); }');\nfunctionInSandbox('world');\n\n// Async\n\nlet functionWithCallbackInSandbox = vm.run('module.exports = function(who, callback) { callback(\"hello \"+ who); }');\nfunctionWithCallbackInSandbox('world', greeting => {\n\tconsole.log(greeting);\n});\n```\n\nWhen `wrapper` is set to `none`, `NodeVM` behaves more like `VM` for synchronous code.\n\n```js\nassert.ok(vm.run('return true') === true);\n```\n\n**TIP**: See tests for more usage examples.\n\n### Loading modules by relative path\n\nTo load modules by relative path, you must pass the full path of the script you're running as a second argument to vm's `run` method if the script is a string. The filename is then displayed in any stack traces generated by the script.\n\n```js\nvm.run('require(\"foobar\")', '/data/myvmscript.js');\n```\n\nIf the script you are running is a VMScript, the path is given in the VMScript constructor.\n\n```js\nconst script = new VMScript('require(\"foobar\")', { filename: '/data/myvmscript.js' });\nvm.run(script);\n```\n\n### Resolver\n\nA resolver can be created via `makeResolverFromLegacyOptions` and be used for multiple `NodeVM` instances allowing to share compiled module code potentially speeding up load times. The first example of `NodeVM` can be rewritten using `makeResolverFromLegacyOptions` as follows.\n\n```js\nconst resolver = makeResolverFromLegacyOptions({\n\texternal: true,\n\tbuiltin: ['fs', 'path'],\n\troot: './',\n\tmock: {\n\t\tfs: {\n\t\t\treadFileSync: () => 'Nice try!',\n\t\t},\n\t},\n});\nconst vm = new NodeVM({\n\tconsole: 'inherit',\n\tsandbox: {},\n\trequire: resolver,\n});\n```\n\n## VMScript\n\nYou can increase performance by using precompiled scripts. The precompiled VMScript can be run multiple times. It is important to note that the code is not bound to any VM (context); rather, it is bound before each run, just for that run.\n\n```js\nimport { VM, VMScript } from 'vm2';\n\nconst vm = new VM();\nconst script = new VMScript('Math.random()');\nconsole.log(vm.run(script));\nconsole.log(vm.run(script));\n```\n\nIt works for both `VM` and `NodeVM`.\n\n```js\nimport { NodeVM, VMScript } from 'vm2';\n\nconst vm = new NodeVM();\nconst script = new VMScript('module.exports = Math.random()');\nconsole.log(vm.run(script));\nconsole.log(vm.run(script));\n```\n\nCode is compiled automatically the first time it runs. One can compile the code anytime with `script.compile()`. Once the code is compiled, the method has no effect.\n\n## Error handling\n\nErrors in code compilation and synchronous code execution can be handled by `try-catch`. Errors in asynchronous code execution can be handled by attaching `uncaughtException` event handler to Node's `process`.\n\n```js\ntry {\n\tvar script = new VMScript('Math.random()').compile();\n} catch (err) {\n\tconsole.error('Failed to compile script.', err);\n}\n\ntry {\n\tvm.run(script);\n} catch (err) {\n\tconsole.error('Failed to execute script.', err);\n}\n\nprocess.on('uncaughtException', err => {\n\tconsole.error('Asynchronous error caught.', err);\n});\n```\n\n## Debugging a sandboxed code\n\nYou can debug or inspect code running in the sandbox as if it was running in a normal process.\n\n-   You can use breakpoints (which requires you to specify a script file name)\n-   You can use `debugger` keyword.\n-   You can use step-in to step inside the code running in the sandbox.\n\n### Example\n\n/tmp/main.js:\n\n```js\nimport { VM, VMScript } from 'vm2';\nimport { readFileSync } from 'node:fs';\n\nconst file = `${__dirname}/sandbox.js`;\n\n// By providing a file name as second argument you enable breakpoints\nconst script = new VMScript(readFileSync(file), file);\n\nnew VM().run(script);\n```\n\n/tmp/sandbox.js\n\n```js\nconst foo = 'ahoj';\n\n// The debugger keyword works just fine everywhere.\n// Even without specifying a file name to the VMScript object.\ndebugger;\n```\n\n## Read-only objects (experimental)\n\nTo prevent sandboxed scripts from adding, changing, or deleting properties from the proxied objects, you can use `freeze` methods to make the object read-only. This is only effective inside VM. Frozen objects are affected deeply. Primitive types cannot be frozen.\n\n**Example without using `freeze`:**\n\n```js\nconst util = {\n\tadd: (a, b) => a + b,\n};\n\nconst vm = new VM({\n\tsandbox: { util },\n});\n\nvm.run('util.add = (a, b) => a - b');\nconsole.log(util.add(1, 1)); // returns 0\n```\n\n**Example with using `freeze`:**\n\n```js\nconst vm = new VM(); // Objects specified in the sandbox cannot be frozen.\nvm.freeze(util, 'util'); // Second argument adds object to global.\n\nvm.run('util.add = (a, b) => a - b'); // Fails silently when not in strict mode.\nconsole.log(util.add(1, 1)); // returns 2\n```\n\n**IMPORTANT:** It is not possible to freeze objects that have already been proxied to the VM.\n\n## Protected objects (experimental)\n\nUnlike `freeze`, this method allows sandboxed scripts to add, change, or delete properties on objects, with one exception - it is not possible to attach functions. Sandboxed scripts are therefore not able to modify methods like `toJSON`, `toString` or `inspect`.\n\n**IMPORTANT:** It is not possible to protect objects that have already been proxied to the VM.\n\n## Cross-sandbox relationships\n\n```js\nconst assert = require('assert');\nconst { VM } = require('vm2');\n\nconst sandbox = {\n\tobject: new Object(),\n\tfunc: new Function(),\n\tbuffer: new Buffer([0x01, 0x05]),\n};\n\nconst vm = new VM({ sandbox });\n\nassert.ok(vm.run(`object`) === sandbox.object);\nassert.ok(vm.run(`object instanceof Object`));\nassert.ok(vm.run(`object`) instanceof Object);\nassert.ok(vm.run(`object.__proto__ === Object.prototype`));\nassert.ok(vm.run(`object`).__proto__ === Object.prototype);\n\nassert.ok(vm.run(`func`) === sandbox.func);\nassert.ok(vm.run(`func instanceof Function`));\nassert.ok(vm.run(`func`) instanceof Function);\nassert.ok(vm.run(`func.__proto__ === Function.prototype`));\nassert.ok(vm.run(`func`).__proto__ === Function.prototype);\n\nassert.ok(vm.run(`new func() instanceof func`));\nassert.ok(vm.run(`new func()`) instanceof sandbox.func);\nassert.ok(vm.run(`new func().__proto__ === func.prototype`));\nassert.ok(vm.run(`new func()`).__proto__ === sandbox.func.prototype);\n\nassert.ok(vm.run(`buffer`) === sandbox.buffer);\nassert.ok(vm.run(`buffer instanceof Buffer`));\nassert.ok(vm.run(`buffer`) instanceof Buffer);\nassert.ok(vm.run(`buffer.__proto__ === Buffer.prototype`));\nassert.ok(vm.run(`buffer`).__proto__ === Buffer.prototype);\nassert.ok(vm.run(`buffer.slice(0, 1) instanceof Buffer`));\nassert.ok(vm.run(`buffer.slice(0, 1)`) instanceof Buffer);\n```\n\n## CLI\n\nBefore you can use vm2 in the command line, install it globally with `npm install vm2 -g`.\n\n```sh\nvm2 ./script.js\n```\n\n## Known Issues\n\n-   It is not possible to define a class that extends a proxied class. This includes using a proxied class in `Object.create`.\n-   Direct eval does not work.\n-   Logging sandbox arrays will repeat the array part in the properties.\n-   Source code transformations can result a different source string for a function.\n-   There are ways to crash the node process from inside the sandbox.\n\n[npm-image]: https://img.shields.io/npm/v/vm2.svg\n[npm-url]: https://www.npmjs.com/package/vm2\n[license-image]: https://img.shields.io/npm/l/vm2.svg\n[license-url]: https://github.com/patriksimek/vm2/blob/resurrection/LICENSE.md\n[downloads-image]: https://img.shields.io/npm/dm/vm2.svg\n[downloads-url]: https://www.npmjs.com/package/vm2\n[snyk-image]: https://snyk.io/test/github/patriksimek/vm2/badge.svg\n[snyk-url]: https://snyk.io/test/github/patriksimek/vm2\n","repository":{"type":"git","url":"git+https://github.com/patriksimek/vm2.git"},"users":{"ramy":true,"nelak":true,"dkimot":true,"godber":true,"ierceg":true,"barenko":true,"hzapata":true,"yorts52":true,"amthenia":true,"evandrix":true,"mastayoda":true,"manikantag":true,"oceanswave":true,"craigpatten":true,"yonigoldberg":true,"shanewholloway":true},"bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"license":"MIT","versions":{"0.1.0":{"name":"vm2","version":"0.1.0","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"_id":"vm2@0.1.0","maintainers":[{"name":"anonymous","email":"patrik@patriksimek.cz"}],"homepage":"https://github.com/patriksimek/vm2","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"./bin/vm2"},"dist":{"shasum":"521618fe1e6a69772b0389bf310ae78c07614dd0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-0.1.0.tgz","integrity":"sha512-nTiCPaAWCKRPYGYBs1sPJm7muI4mpYaaUHeYupdqaJDsYlvQATK2Pwdj1c4eg5DO9JhdRahbsna8LVNi9CxHSg==","signatures":[{"sig":"MEUCIQCiR5vvwEsRie/qIw5ASdYZNH9/KL7jxipUZtwnBtMM6wIgZzKRxqZwX39Gu/9QDYVbFwWztrHUdYYpvSQaT8BGr7o=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","engines":{"node":">=0.11"},"scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"patrik@patriksimek.cz"},"licenses":[{"url":"http://opensource.org/licenses/mit-license.php","type":"MIT"}],"deprecated":"The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.","repository":{"url":"https://github.com/patriksimek/vm2","type":"git"},"_npmVersion":"1.3.22","description":"vm2 is a sandbox that can run untrusted code with whitelisted built-in node objects. Securely!.","directories":{},"dependencies":{},"devDependencies":{"mocha":">=1.12.0","coffee-script":">=1.6.2"}},"0.1.1":{"name":"vm2","version":"0.1.1","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"_id":"vm2@0.1.1","maintainers":[{"name":"anonymous","email":"patrik@patriksimek.cz"}],"homepage":"https://github.com/patriksimek/vm2","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"./bin/vm2"},"dist":{"shasum":"43cea028ab11f64cced4716dec2e65e75197e396","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-0.1.1.tgz","integrity":"sha512-Lu5oDfDmNnCMXcHF3HSVVUd3U9tqedwmkzQTQG3/QkR0AZIQANrZ7vVjonUB1waffL/hpsuxIQqhSz2I5R46ew==","signatures":[{"sig":"MEYCIQCqftZfFKKZaHeX6pY+BV7w++z4pKJvEbNm79jdaOBCCwIhANtnj1uX5HkGv2u0aC04G1JH8sn2YFKwc2qFHPJsxRrK","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","engines":{"node":">=0.11"},"scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"patrik@patriksimek.cz"},"licenses":[{"url":"http://opensource.org/licenses/mit-license.php","type":"MIT"}],"deprecated":"The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.","repository":{"url":"https://github.com/patriksimek/vm2","type":"git"},"_npmVersion":"1.3.22","description":"vm2 is a sandbox that can run untrusted code with whitelisted built-in node objects. Securely!.","directories":{},"dependencies":{},"devDependencies":{"mocha":">=1.12.0","coffee-script":">=1.6.2"}},"0.2.0":{"name":"vm2","version":"0.2.0","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"_id":"vm2@0.2.0","maintainers":[{"name":"anonymous","email":"patrik@patriksimek.cz"}],"homepage":"https://github.com/patriksimek/vm2","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"./bin/vm2"},"dist":{"shasum":"228187278c01beb8dbe8086b7aca35385763af7e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-0.2.0.tgz","integrity":"sha512-vKa6v62tJGoBtCaxeewrXRgbhEjLVR2KLwcYys68WqOEoHPVul/hrrZXlf+e5gLBpht+KlyzHE6+TNDxcKd27A==","signatures":[{"sig":"MEUCIDxksJLXzC6nOiUyCtKHtxvgM82ft/pPLZFIkneGwoqMAiEAxCVEYCnU+7bJzDeZA/70r1blhk30LyXMwDhGOqP0yWs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"228187278c01beb8dbe8086b7aca35385763af7e","engines":{"node":">=0.11"},"gitHead":"c128429bf6bf75b6aa653019b6dc0bc8d595e3cc","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"patrik@patriksimek.cz"},"licenses":[{"url":"http://opensource.org/licenses/mit-license.php","type":"MIT"}],"deprecated":"The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.","repository":{"url":"https://github.com/patriksimek/vm2","type":"git"},"_npmVersion":"1.4.28","description":"vm2 is a sandbox that can run untrusted code with whitelisted built-in node objects. Securely!.","directories":{},"dependencies":{},"devDependencies":{"mocha":"^1.12.0","coffee-script":"^1.8.0"}},"0.2.1":{"name":"vm2","version":"0.2.1","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"_id":"vm2@0.2.1","maintainers":[{"name":"anonymous","email":"patrik@patriksimek.cz"}],"homepage":"https://github.com/patriksimek/vm2","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"./bin/vm2"},"dist":{"shasum":"91526c734c9864c4841d7a02345c024e199545ed","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-0.2.1.tgz","integrity":"sha512-2Ffy4OKHW5XW0PBYkPyGjX7P8lr0qCKwU7IdtK2IW1aRphog5O2v/wZ/en3kelVQi5/5UUxGqGhVyxL5reEvjQ==","signatures":[{"sig":"MEUCICQy3WfQ4zwYuwk0OtNHr6duBicpMwd/rlZ2owVS6PnvAiEA8zsD6rjTElIxyXzdg261daVZGS19unv/FaelsX0pL14=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"91526c734c9864c4841d7a02345c024e199545ed","engines":{"node":">=0.11"},"gitHead":"875f4d52c4281a5911b1f9a7d2ab5b4c153361a2","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"patrik@patriksimek.cz"},"licenses":[{"url":"http://opensource.org/licenses/mit-license.php","type":"MIT"}],"deprecated":"The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.","repository":{"url":"https://github.com/patriksimek/vm2","type":"git"},"_npmVersion":"2.1.11","description":"vm2 is a sandbox that can run untrusted code with whitelisted built-in node objects. Securely!.","directories":{},"_nodeVersion":"0.10.33","dependencies":{},"devDependencies":{"mocha":"^1.12.0","coffee-script":"^1.8.0"}},"0.2.2":{"name":"vm2","version":"0.2.2","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"_id":"vm2@0.2.2","maintainers":[{"name":"anonymous","email":"patrik@patriksimek.cz"}],"homepage":"https://github.com/patriksimek/vm2","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"./bin/vm2"},"dist":{"shasum":"b504aedbf768bc2edf67e0bc2b8c73c44b8f7e54","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-0.2.2.tgz","integrity":"sha512-4U8AVqM3yfhZE+BSEk107kkRlmXIAgv6yrK4kRAj+OTuA8iRyQP1LfhfRRqessrSzwGB2fCPMFhtW7NovnX+wg==","signatures":[{"sig":"MEUCIDbAvxOS6jY7NTXaRH5lKb+tI0h+l9h6uMFOd1ZQIeaLAiEA3GFp3okVrlLNOvw0X57BXccLp0GcfpQmCuqA1YAIQz0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"b504aedbf768bc2edf67e0bc2b8c73c44b8f7e54","engines":{"node":">=0.11"},"gitHead":"252bcd3c5fda5acc96eb785d9f85144963a01855","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"patrik@patriksimek.cz"},"licenses":[{"url":"http://opensource.org/licenses/mit-license.php","type":"MIT"}],"deprecated":"The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.","repository":{"url":"https://github.com/patriksimek/vm2","type":"git"},"_npmVersion":"2.4.1","description":"vm2 is a sandbox that can run untrusted code with whitelisted built-in node objects. Securely!.","directories":{},"_nodeVersion":"1.1.0","dependencies":{},"devDependencies":{"mocha":"^1.12.0","coffee-script":"^1.8.0"}},"0.2.3":{"name":"vm2","version":"0.2.3","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"license":"MIT","_id":"vm2@0.2.3","maintainers":[{"name":"anonymous","email":"patrik@patriksimek.cz"}],"homepage":"https://github.com/patriksimek/vm2#readme","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"./bin/vm2"},"dist":{"shasum":"91fe0c1629b50a0519437f2a4ce90e21cb923891","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-0.2.3.tgz","integrity":"sha512-YjW7qGANkU3391ldbQjVIfr5MgU8WzmZ+jXdA3w7w8FZG+s5aFv1duNz4ddimAApIsbabdjNovnsJWCj9s6XVw==","signatures":[{"sig":"MEUCIBm8iwjOlEhFTHN/0hmwP2IQDTLevg9Np52+XX/1qIYFAiEAqb1KLSUVdr1qto8OUgzwvTLo4XO1+mbezbgPXnfVuOM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"91fe0c1629b50a0519437f2a4ce90e21cb923891","engines":{"node":">=0.11"},"gitHead":"e35b24817e1687a75bfcde46000d26f4f69ffa5d","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"patrik@patriksimek.cz"},"deprecated":"The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.","repository":{"url":"git+https://github.com/patriksimek/vm2.git","type":"git"},"_npmVersion":"2.14.3","description":"vm2 is a sandbox that can run untrusted code with whitelisted built-in node objects. Securely!.","directories":{},"_nodeVersion":"4.1.0","dependencies":{},"devDependencies":{"mocha":"^1.12.0","coffee-script":"^1.8.0"}},"0.2.4":{"name":"vm2","version":"0.2.4","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"license":"MIT","_id":"vm2@0.2.4","maintainers":[{"name":"anonymous","email":"patrik@patriksimek.cz"}],"homepage":"https://github.com/patriksimek/vm2#readme","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"./bin/vm2"},"dist":{"shasum":"dcf0b2b0be1fd78d3ded3a64915923f131cd2928","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-0.2.4.tgz","integrity":"sha512-qtyBXFXLVBu4QwVS+amF+wGheqQLUfKmavNFfswwtqFwIcPzaCo+LDkodUkyhnr73FvTydo7dwOisXWCJghUMA==","signatures":[{"sig":"MEUCIFc+Fkaw/kXe3dhKcRo2aYJrCTyqpm8L5frniic/tUNcAiEA1wplmd4l0AuDKoQgaPFoLXkMFLzS8Vl0dhNk4KZuSLE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"dcf0b2b0be1fd78d3ded3a64915923f131cd2928","engines":{"node":">=0.11"},"gitHead":"312b076a6996c230164856f0a328bd1a32eaba84","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"patrik@patriksimek.cz"},"deprecated":"The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.","repository":{"url":"git+https://github.com/patriksimek/vm2.git","type":"git"},"_npmVersion":"2.14.4","description":"vm2 is a sandbox that can run untrusted code with whitelisted built-in node objects. Securely!.","directories":{},"_nodeVersion":"4.1.2","dependencies":{},"devDependencies":{"mocha":"^1.12.0","coffee-script":"^1.8.0"}},"1.0.0":{"name":"vm2","version":"1.0.0","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"license":"MIT","_id":"vm2@1.0.0","maintainers":[{"name":"anonymous","email":"patrik@patriksimek.cz"}],"homepage":"https://github.com/patriksimek/vm2#readme","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"./bin/vm2"},"dist":{"shasum":"db6ec87b603368bfbcaa8232a38f608223530ed7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-1.0.0.tgz","integrity":"sha512-g+pm9tTF0rQ5reqrZvUfug7DA9tvG5cKznJAPoup1b0KQ4jkZBXc8N8KkzGPo8UsE6ZvAovf0Jvs5+d7Aomo+g==","signatures":[{"sig":"MEYCIQDmq4NvtOxfY3qqhyM54g67xSkjkQApwcXVh9rHWT/6uAIhAIJylm0i66c5U1ZTdG2qo5LF42z/F1HDWFEBF3owCfHW","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"db6ec87b603368bfbcaa8232a38f608223530ed7","engines":{"node":">=0.11"},"gitHead":"9e780ea1e9e8c681044c3019bbb16bc3c249b81d","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"patrik@patriksimek.cz"},"deprecated":"The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.","repository":{"url":"git+https://github.com/patriksimek/vm2.git","type":"git"},"_npmVersion":"2.14.4","description":"vm2 is a sandbox that can run untrusted code with whitelisted built-in node objects. Securely!.","directories":{},"_nodeVersion":"4.1.2","dependencies":{},"devDependencies":{"mocha":"^1.12.0","coffee-script":"^1.8.0"}},"1.0.1":{"name":"vm2","version":"1.0.1","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"license":"MIT","_id":"vm2@1.0.1","maintainers":[{"name":"anonymous","email":"patrik@patriksimek.cz"}],"homepage":"https://github.com/patriksimek/vm2#readme","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"./bin/vm2"},"dist":{"shasum":"3f0b71526f5baafcfc7727752c8ce79f7ba63fbd","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-1.0.1.tgz","integrity":"sha512-nsPtW4Y2oBwwCQINxeOCzokW+lIm5VM6Af0xb9AUJpB2yTXVd1JyhwKV/uz6nyeI3YwpgmolciG8gOm28XJnkA==","signatures":[{"sig":"MEYCIQDvna85NblsX3nc1b3m/OjMCzGDbbY7tTaDtHnb2ZmaiAIhAPa35RXIPK8vhZdyzL74XOAqLV3BMAq65OffgA2bXI++","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"3f0b71526f5baafcfc7727752c8ce79f7ba63fbd","engines":{"node":">=0.11"},"gitHead":"5a098cf737fb2a084995c60877617fef8c24e2b5","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"patrik@patriksimek.cz"},"deprecated":"The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.","repository":{"url":"git+https://github.com/patriksimek/vm2.git","type":"git"},"_npmVersion":"2.14.4","description":"vm2 is a sandbox that can run untrusted code with whitelisted built-in node objects. Securely!.","directories":{},"_nodeVersion":"4.1.2","dependencies":{},"devDependencies":{"mocha":"^1.12.0","coffee-script":"^1.8.0"}},"2.0.0":{"name":"vm2","version":"2.0.0","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"license":"MIT","_id":"vm2@2.0.0","maintainers":[{"name":"anonymous","email":"patrik@patriksimek.cz"}],"homepage":"https://github.com/patriksimek/vm2#readme","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"./bin/vm2"},"dist":{"shasum":"0fe5084cfc387a2a0bc147a2ae09c49bf0fff12f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-2.0.0.tgz","integrity":"sha512-lN0ZFHcbKKqjp6bC35onsJB4hXcQdX5f6OuMcZLo5IbhF53UBN46rpoUSV6M+EmfgDLV+GnOI4qvw2O89aluxg==","signatures":[{"sig":"MEUCIQDe1sA8HOXmmeItRvGdLUde9zu/hNDKjgI277ICbHFopgIgIv0/9Plf+Xc9f+oXMFdQf55rRAKYCO2XhpjHt//FQ/U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"0fe5084cfc387a2a0bc147a2ae09c49bf0fff12f","engines":{"node":">=0.11"},"gitHead":"c6961283dc1760eab3b5d95c0b622413a88b9f79","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"patrik@patriksimek.cz"},"deprecated":"The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.","repository":{"url":"git+https://github.com/patriksimek/vm2.git","type":"git"},"_npmVersion":"2.14.20","description":"vm2 is a sandbox that can run untrusted code with whitelisted built-in node objects. Securely!.","directories":{},"_nodeVersion":"4.4.0","dependencies":{},"devDependencies":{"mocha":"^1.12.0","coffee-script":"^1.8.0"},"_npmOperationalInternal":{"tmp":"tmp/vm2-2.0.0.tgz_1458147950276_0.3866714814212173","host":"packages-12-west.internal.npmjs.com"}},"2.0.2":{"name":"vm2","version":"2.0.2","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"license":"MIT","_id":"vm2@2.0.2","maintainers":[{"name":"anonymous","email":"patrik@patriksimek.cz"}],"homepage":"https://github.com/patriksimek/vm2#readme","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"./bin/vm2"},"dist":{"shasum":"c7a796d673dc33f8e7deaf9b11c9e804751338b6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-2.0.2.tgz","integrity":"sha512-Oe2/rUHf+qcwD2bTbPy0JP9N5QTvjrvzzF9nurDImMkBp8C/30FWRvg28aYln1I8aw8aSDOTuMob3mOIyvqZ/g==","signatures":[{"sig":"MEUCIQDqyIHydu0sAXcDyAR6jcxPvufREMtp578VNLmQ86Vx6AIgJa7ulBAAlzbIU32wYSnYl3KXwJwE/iPdGHJ79H/t7YQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"c7a796d673dc33f8e7deaf9b11c9e804751338b6","engines":{"node":">=0.11"},"gitHead":"442e367d0c7d7fb84b284145732c46832dca0122","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"patrik@patriksimek.cz"},"deprecated":"The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.","repository":{"url":"git+https://github.com/patriksimek/vm2.git","type":"git"},"_npmVersion":"3.8.3","description":"vm2 is a sandbox that can run untrusted code with whitelisted built-in node objects. Securely!","directories":{},"_nodeVersion":"4.4.0","dependencies":{},"devDependencies":{"mocha":"^1.12.0","coffee-script":"^1.8.0"},"_npmOperationalInternal":{"tmp":"tmp/vm2-2.0.2.tgz_1459977726412_0.9951898222789168","host":"packages-12-west.internal.npmjs.com"}},"3.0.0":{"name":"vm2","version":"3.0.0","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"license":"MIT","_id":"vm2@3.0.0","maintainers":[{"name":"anonymous","email":"patrik@patriksimek.cz"}],"homepage":"https://github.com/patriksimek/vm2#readme","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"./bin/vm2"},"dist":{"shasum":"dca279c79883e30d44577248ea7779581b2d7d90","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-3.0.0.tgz","integrity":"sha512-uxBdy/ZlBfAFEhgbInSXI4nXQaUd5oja3e2MBS7OGrpn20LcX0loTzfzrd8xF6gCH9o7g296w6aFTN71arn5Yg==","signatures":[{"sig":"MEQCIAStVJEl0RBFYFTfc9yq8HfBytAM8Wpi6XVpybdZ7kdFAiA6AcN1CiLN8bnOrhmnqPOf7bxrMPdS3br//3bqGzwJPQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"dca279c79883e30d44577248ea7779581b2d7d90","engines":{"node":">=6.0"},"gitHead":"d218cd5ff18fbc4ddc8fddf8f4c11d4cc365005c","scripts":{"test":"mocha test"},"_npmUser":{"name":"anonymous","email":"patrik@patriksimek.cz"},"deprecated":"The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.","repository":{"url":"git+https://github.com/patriksimek/vm2.git","type":"git"},"_npmVersion":"3.9.6","description":"vm2 is a sandbox that can run untrusted code with whitelisted Node's built-in modules. Securely!","directories":{},"_nodeVersion":"6.2.1","dependencies":{},"devDependencies":{"mocha":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vm2-3.0.0.tgz_1466461635486_0.061113041592761874","host":"packages-16-east.internal.npmjs.com"}},"3.0.1":{"name":"vm2","version":"3.0.1","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"license":"MIT","_id":"vm2@3.0.1","maintainers":[{"name":"anonymous","email":"patrik@patriksimek.cz"}],"homepage":"https://github.com/patriksimek/vm2#readme","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"./bin/vm2"},"dist":{"shasum":"d7ec0995775fb11eea467574ff6ff86ca9728ff5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-3.0.1.tgz","integrity":"sha512-YKW48CRW4T9o1p54xu4/GdN9KA4o3qkMJAYKntp+ffPCe7mrTLR+3RL0nXqhy0olB8m+JHTP+uyIkFFvFvFe8Q==","signatures":[{"sig":"MEYCIQDCb3f9lmFv1YMm/5FuQFqlSialAA2/MlgZfAflb00vpQIhAIYqn08QNfBySeSImRleAOdpIaD2Dqq2mRz36Odus4lK","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"d7ec0995775fb11eea467574ff6ff86ca9728ff5","engines":{"node":">=6.0"},"gitHead":"f9c3c1a25e2d2368835e02475fa402d1445b98fe","scripts":{"test":"mocha test"},"_npmUser":{"name":"anonymous","email":"patrik@patriksimek.cz"},"deprecated":"The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.","repository":{"url":"git+https://github.com/patriksimek/vm2.git","type":"git"},"_npmVersion":"2.15.8","description":"vm2 is a sandbox that can run untrusted code with whitelisted Node's built-in modules. Securely!","directories":{},"_nodeVersion":"4.4.7","dependencies":{},"devDependencies":{"mocha":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vm2-3.0.1.tgz_1469035661834_0.025151036912575364","host":"packages-16-east.internal.npmjs.com"}},"3.1.0":{"name":"vm2","version":"3.1.0","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"license":"MIT","_id":"vm2@3.1.0","maintainers":[{"name":"anonymous","email":"patrik@patriksimek.cz"}],"homepage":"https://github.com/patriksimek/vm2#readme","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"./bin/vm2"},"dist":{"shasum":"9b9dccec4dc39d65aaddf590f3a3d4294d0abea1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-3.1.0.tgz","integrity":"sha512-ElB+HOmpAXhrSX8OEL2Jwc2x17rc/MkqH/GalGl/5crLc43R23HQWRRc9guPIzFin9zfNGeILUqsw+7VoSl7Ng==","signatures":[{"sig":"MEUCICl/xGafpmQulqlAdVamHcNfl2lAy0iGiY8XtG6RIBsTAiEA6PDn++ltKFsfDvu40XAQz9+hmmuUHw7kkh5AQ/p1vrg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"9b9dccec4dc39d65aaddf590f3a3d4294d0abea1","engines":{"node":">=6.0"},"gitHead":"af145bf3e0579c8f8aacb9502bffc317200b6dd7","scripts":{"test":"mocha test"},"_npmUser":{"name":"anonymous","email":"patrik@patriksimek.cz"},"deprecated":"The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.","repository":{"url":"git+https://github.com/patriksimek/vm2.git","type":"git"},"_npmVersion":"2.15.8","description":"vm2 is a sandbox that can run untrusted code with whitelisted Node's built-in modules. Securely!","directories":{},"_nodeVersion":"6.5.0","dependencies":{},"devDependencies":{"mocha":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vm2-3.1.0.tgz_1472934956507_0.2920705901924521","host":"packages-16-east.internal.npmjs.com"}},"3.2.0":{"name":"vm2","version":"3.2.0","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"license":"MIT","_id":"vm2@3.2.0","maintainers":[{"name":"anonymous","email":"patrik@patriksimek.cz"}],"homepage":"https://github.com/patriksimek/vm2#readme","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"./bin/vm2"},"dist":{"shasum":"8a763bf3314356800baaa528bcf546c267e84bb9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-3.2.0.tgz","integrity":"sha512-XsWEITGGcZsQNb8HEkXu91vfNEp4+19MvQCL5TDSfSEpobFjmNPHbFBdO8UylvGTyvJSYvsWS4vqIP7uaIDOqQ==","signatures":[{"sig":"MEQCIEo6dnwBOQnEfoUQLijTzjgv/MoQi1FhIEzibhdRdFMWAiBXO+x+Vg6ImhJqYPrEWzPv8Z872sjUU1Vo1lb7BR2zEQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"8a763bf3314356800baaa528bcf546c267e84bb9","engines":{"node":">=6.0"},"gitHead":"18dfd7dcff69b6ee7f3e7f2a1d000b86206ef8a3","scripts":{"test":"mocha test"},"_npmUser":{"name":"anonymous","email":"patrik@patriksimek.cz"},"deprecated":"The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.","repository":{"url":"git+https://github.com/patriksimek/vm2.git","type":"git"},"_npmVersion":"4.2.0","description":"vm2 is a sandbox that can run untrusted code with whitelisted Node's built-in modules. Securely!","directories":{},"_nodeVersion":"6.9.1","dependencies":{},"devDependencies":{"mocha":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vm2-3.2.0.tgz_1486766849544_0.3771994663402438","host":"packages-12-west.internal.npmjs.com"}},"3.3.0":{"name":"vm2","version":"3.3.0","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"license":"MIT","_id":"vm2@3.3.0","maintainers":[{"name":"anonymous","email":"patrik@patriksimek.cz"}],"homepage":"https://github.com/patriksimek/vm2#readme","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"./bin/vm2"},"dist":{"shasum":"7df0639e3089cc287f39e941ba725fcf982fc40c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-3.3.0.tgz","integrity":"sha512-+WbQNYIuC1yOMO25o2uR+I+lRx5all3sn7mog639u5f7NiaLoAMBCs5baXuX6syEEogvRpiiZct7NNmcUygeCQ==","signatures":[{"sig":"MEQCIC8ITp061GVieeIfruR7iBT1v1qk/EVa8EGcb504QJvoAiBkjQschcmDHci50eREh58tHfyRQwQvn1+pmjMdMj7gsw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"7df0639e3089cc287f39e941ba725fcf982fc40c","engines":{"node":">=6.0"},"gitHead":"2c821f90cc2f2896ef0f08b1613d1de8984fb974","scripts":{"test":"mocha test"},"_npmUser":{"name":"anonymous","email":"patrik@patriksimek.cz"},"deprecated":"The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.","repository":{"url":"git+https://github.com/patriksimek/vm2.git","type":"git"},"_npmVersion":"3.10.10","description":"vm2 is a sandbox that can run untrusted code with whitelisted Node's built-in modules. Securely!","directories":{},"_nodeVersion":"6.10.0","dependencies":{},"devDependencies":{"mocha":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vm2-3.3.0.tgz_1490629478774_0.6753964582458138","host":"packages-12-west.internal.npmjs.com"}},"3.3.1":{"name":"vm2","version":"3.3.1","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"license":"MIT","_id":"vm2@3.3.1","maintainers":[{"name":"anonymous","email":"patrik@patriksimek.cz"}],"homepage":"https://github.com/patriksimek/vm2#readme","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"./bin/vm2"},"dist":{"shasum":"9528fcccda0ad55f2c55fc17c9e909a70a262894","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-3.3.1.tgz","integrity":"sha512-7Ro0TRDw1Ew7XQyaF95Ss3rxn+7pz+YvFiDf5xnLylM/hzMu2sBCaaJVStGTHwi4HBa8DLAbRom2e9VXrRn49Q==","signatures":[{"sig":"MEUCIA/1J0IN+BGEWjEEuqww2mCFreM6VQjqRLgIY44rpOBUAiEAyFpNLwIFjSfJ85v8Mc71iHkejuSABu1GOpu/pxC1onw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"9528fcccda0ad55f2c55fc17c9e909a70a262894","engines":{"node":">=6.0"},"gitHead":"eafaa588cd4b3767990db306e53431ad2600325b","scripts":{"test":"mocha test"},"_npmUser":{"name":"anonymous","email":"patrik@patriksimek.cz"},"deprecated":"The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.","repository":{"url":"git+https://github.com/patriksimek/vm2.git","type":"git"},"_npmVersion":"3.10.10","description":"vm2 is a sandbox that can run untrusted code with whitelisted Node's built-in modules. Securely!","directories":{},"_nodeVersion":"6.10.0","dependencies":{},"devDependencies":{"mocha":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vm2-3.3.1.tgz_1490630993421_0.3265832408796996","host":"packages-12-west.internal.npmjs.com"}},"3.4.0":{"name":"vm2","version":"3.4.0","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"license":"MIT","_id":"vm2@3.4.0","maintainers":[{"name":"anonymous","email":"patrik@patriksimek.cz"}],"homepage":"https://github.com/patriksimek/vm2#readme","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"./bin/vm2"},"dist":{"shasum":"b72df8a27b338b8d8bc8cfe23d638221b774ad9c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-3.4.0.tgz","integrity":"sha512-wLpMKYdbM7bhbF5O7kee0veuLhjImIHkQEvRaWXXjGnkPEw2Kd2E3uh8d/VAUmg9LG0b5rvPVWJULc4Gnd69FQ==","signatures":[{"sig":"MEUCIQCBqKc3HBFRzjXwefySa83nngcV30kmeA8v2i7/yneNvQIgb5e1ZeCqmMFbJQHWUL9Jbh2TMwBJu3vWgyvs0C4qCvg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"b72df8a27b338b8d8bc8cfe23d638221b774ad9c","engines":{"node":">=6.0"},"gitHead":"31d7a859958b095aafc6d0f003196cb112f91db7","scripts":{"test":"mocha test"},"_npmUser":{"name":"anonymous","email":"patrik@patriksimek.cz"},"deprecated":"The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.","repository":{"url":"git+https://github.com/patriksimek/vm2.git","type":"git"},"_npmVersion":"3.10.10","description":"vm2 is a sandbox that can run untrusted code with whitelisted Node's built-in modules. Securely!","directories":{},"_nodeVersion":"6.10.0","dependencies":{},"devDependencies":{"mocha":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vm2-3.4.0.tgz_1490661609322_0.5177239470649511","host":"packages-18-east.internal.npmjs.com"}},"3.4.1":{"name":"vm2","version":"3.4.1","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"license":"MIT","_id":"vm2@3.4.1","maintainers":[{"name":"anonymous","email":"patrik@patriksimek.cz"}],"homepage":"https://github.com/patriksimek/vm2#readme","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"./bin/vm2"},"dist":{"shasum":"8e9394aae0b2617dcee83010a4eef3ce7694ff73","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-3.4.1.tgz","integrity":"sha512-SsiR7ijQpOPcoUbHTWDx1AbcFIOgUtArhQIfB7FnRfNOmpnTV4mijpat5q4RqYRkbLg8bruWD28PaVPF5NJKZQ==","signatures":[{"sig":"MEUCIHmQAF0DxLjT/Mc/sEPuPs9jlaXT+PMQw8/Jx0XHMM2kAiEAlZlc2dSra3Tj6IM+XD+JsJ9RAVHt8IcgFbn8dguYb7w=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"8e9394aae0b2617dcee83010a4eef3ce7694ff73","engines":{"node":">=6.0"},"gitHead":"31d7a859958b095aafc6d0f003196cb112f91db7","scripts":{"test":"mocha test"},"_npmUser":{"name":"anonymous","email":"patrik@patriksimek.cz"},"deprecated":"The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.","repository":{"url":"git+https://github.com/patriksimek/vm2.git","type":"git"},"_npmVersion":"3.10.10","description":"vm2 is a sandbox that can run untrusted code with whitelisted Node's built-in modules. Securely!","directories":{},"_nodeVersion":"6.10.0","dependencies":{},"devDependencies":{"mocha":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vm2-3.4.1.tgz_1490663994724_0.6018125258851796","host":"packages-18-east.internal.npmjs.com"}},"3.4.2":{"name":"vm2","version":"3.4.2","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"license":"MIT","_id":"vm2@3.4.2","maintainers":[{"name":"anonymous","email":"patrik@patriksimek.cz"}],"homepage":"https://github.com/patriksimek/vm2#readme","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"./bin/vm2"},"dist":{"shasum":"b9077314918837bef35a236d2ae2bffbf9fd5598","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-3.4.2.tgz","integrity":"sha512-e9MI2Rcw257Zs4zZIbJVRGUE/plY+/N69EcPWZFQSadw81V2eLfunYrI2WeBZZvudwTVydiQL8tE2CQxQcOgnw==","signatures":[{"sig":"MEQCIHGxCttFalJRK3988PhJSohQdlpOsRhBIhw1bGGdaxsyAiAXxiXKSZpn4qtlBpzd42srOnQvGvv9Xk7vw1J20Y9F+g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"b9077314918837bef35a236d2ae2bffbf9fd5598","engines":{"node":">=6.0"},"gitHead":"52d9d2b7559d93354b9333fa6977ce4152beca6b","scripts":{"test":"mocha test"},"_npmUser":{"name":"anonymous","email":"patrik@patriksimek.cz"},"deprecated":"The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.","repository":{"url":"git+https://github.com/patriksimek/vm2.git","type":"git"},"_npmVersion":"3.10.10","description":"vm2 is a sandbox that can run untrusted code with whitelisted Node's built-in modules. Securely!","directories":{},"_nodeVersion":"6.10.0","dependencies":{},"devDependencies":{"mocha":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vm2-3.4.2.tgz_1490748695412_0.0710974782705307","host":"packages-18-east.internal.npmjs.com"}},"3.4.3":{"name":"vm2","version":"3.4.3","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"license":"MIT","_id":"vm2@3.4.3","maintainers":[{"name":"anonymous","email":"patrik@patriksimek.cz"}],"homepage":"https://github.com/patriksimek/vm2#readme","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"./bin/vm2"},"dist":{"shasum":"4fec9fbd54ccd8eaef810ee3d70c62f0a82390f7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-3.4.3.tgz","integrity":"sha512-fE9q9Il/KKM/IcMKcddBBuTd3EU3HRfjaOSp2/J16VtWYKRj1dox0ngEbRH5LqgwnuuSdRKqAj+9S+wuFBRieA==","signatures":[{"sig":"MEYCIQCC8CFpzKOPsvcPgH0LRNrglKJnU5AkFZNfE7rsF3pmjAIhAPBrDq2w6r+UEK+f2N5YIL/6vPeKYMZB7/0+Isajy5OP","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"4fec9fbd54ccd8eaef810ee3d70c62f0a82390f7","engines":{"node":">=6.0"},"gitHead":"850ecf4f6df5b6de69586bff28f6974d16f0dd8d","scripts":{"test":"mocha test"},"_npmUser":{"name":"anonymous","email":"patrik@patriksimek.cz"},"deprecated":"The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.","repository":{"url":"git+https://github.com/patriksimek/vm2.git","type":"git"},"_npmVersion":"3.10.10","description":"vm2 is a sandbox that can run untrusted code with whitelisted Node's built-in modules. Securely!","directories":{},"_nodeVersion":"6.10.0","dependencies":{},"devDependencies":{"mocha":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vm2-3.4.3.tgz_1490801153385_0.43652567197568715","host":"packages-18-east.internal.npmjs.com"}},"3.4.4":{"name":"vm2","version":"3.4.4","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"license":"MIT","_id":"vm2@3.4.4","maintainers":[{"name":"anonymous","email":"patrik@patriksimek.cz"}],"homepage":"https://github.com/patriksimek/vm2#readme","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"./bin/vm2"},"dist":{"shasum":"459d035838ca613a9107223e17d44099fbac1f11","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-3.4.4.tgz","integrity":"sha512-WVBcdWmrF4zbO+ME+yRu/EQ194vnklb09rosNVysXZkmgfgI9ScL/nRPRVZ4hF5QhVGfh1Sce5YtvUM5IqWF6Q==","signatures":[{"sig":"MEQCIFXrXzGVYEJgs5NKfzrdK48XNNoS+GG/nnTJ1qmKwxUZAiAkGc4CTeW1c8Rj8ax3UOBMdZp0SCZlW2XZ+3axr00H4A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"459d035838ca613a9107223e17d44099fbac1f11","engines":{"node":">=6.0"},"gitHead":"069b6b5d4f7c2eeda166159430581bba9c3a85ba","scripts":{"test":"mocha test"},"_npmUser":{"name":"anonymous","email":"patrik@patriksimek.cz"},"deprecated":"The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.","repository":{"url":"git+https://github.com/patriksimek/vm2.git","type":"git"},"_npmVersion":"3.10.10","description":"vm2 is a sandbox that can run untrusted code with whitelisted Node's built-in modules. Securely!","directories":{},"_nodeVersion":"6.10.0","dependencies":{},"devDependencies":{"mocha":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vm2-3.4.4.tgz_1490833311299_0.7928054465446621","host":"packages-18-east.internal.npmjs.com"}},"3.4.5":{"name":"vm2","version":"3.4.5","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"license":"MIT","_id":"vm2@3.4.5","maintainers":[{"name":"anonymous","email":"patrik@patriksimek.cz"}],"homepage":"https://github.com/patriksimek/vm2#readme","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"./bin/vm2"},"dist":{"shasum":"ab7baa50ea8af52d9199d8e6412d8000b040979e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-3.4.5.tgz","integrity":"sha512-yL+NmBzmsN4hBGbOHtm2MecSZPQBQpajdTqOcji+3m3icm40EDfIDW6I4qrWbPKnm7PlFh3Kg9IPE702JiN2Xw==","signatures":[{"sig":"MEYCIQCOEysnj6aoosJ2Mrz/yHZi4FYIpDjpIL8cKYlDQw1FIAIhAJJ5G3HcxfIvs09I5rzl1YTJ4DnDhYShQXZLDiFFJmRZ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"ab7baa50ea8af52d9199d8e6412d8000b040979e","engines":{"node":">=6.0"},"gitHead":"032186065fccae86323940fd3a6247cba34987f4","scripts":{"test":"mocha test"},"_npmUser":{"name":"anonymous","email":"patrik@patriksimek.cz"},"deprecated":"The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.","repository":{"url":"git+https://github.com/patriksimek/vm2.git","type":"git"},"_npmVersion":"3.10.10","description":"vm2 is a sandbox that can run untrusted code with whitelisted Node's built-in modules. Securely!","directories":{},"_nodeVersion":"6.10.0","dependencies":{},"devDependencies":{"mocha":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vm2-3.4.5.tgz_1490835822323_0.3659307442139834","host":"packages-12-west.internal.npmjs.com"}},"3.4.6":{"name":"vm2","version":"3.4.6","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"license":"MIT","_id":"vm2@3.4.6","maintainers":[{"name":"anonymous","email":"patrik@patriksimek.cz"}],"homepage":"https://github.com/patriksimek/vm2#readme","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"./bin/vm2"},"dist":{"shasum":"9f952e4083e3af8398291a40e802854fed6a7673","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-3.4.6.tgz","integrity":"sha512-HVi70CAe7kDOeVAZM6EVFSNtPWSv7Io1cqh4rQknu8rPpH+tM1RKQqBEMjoG8upJnK8kTbi3B++ef34jjDJeGg==","signatures":[{"sig":"MEUCIA/tJXlnbk03ByAYFL/TiBLfHZCOBmN32UJlkeyzsezKAiEAjVoANhRkGqFx/NzElHQDWCwlR2+H7mtiyii8SEcAlMg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"9f952e4083e3af8398291a40e802854fed6a7673","engines":{"node":">=6.0"},"gitHead":"dc41cacf021575c3172aa5dcc546282f23ddae39","scripts":{"test":"mocha test"},"_npmUser":{"name":"anonymous","email":"patrik@patriksimek.cz"},"deprecated":"The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.","repository":{"url":"git+https://github.com/patriksimek/vm2.git","type":"git"},"_npmVersion":"3.10.10","description":"vm2 is a sandbox that can run untrusted code with whitelisted Node's built-in modules. Securely!","directories":{},"_nodeVersion":"6.10.0","dependencies":{},"devDependencies":{"mocha":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vm2-3.4.6.tgz_1490891441910_0.9528624867089093","host":"packages-12-west.internal.npmjs.com"}},"3.5.0":{"name":"vm2","version":"3.5.0","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"license":"MIT","_id":"vm2@3.5.0","maintainers":[{"name":"anonymous","email":"patrik@patriksimek.cz"}],"homepage":"https://github.com/patriksimek/vm2#readme","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"./bin/vm2"},"dist":{"shasum":"14448d7833f13c94d5275735ed171034cb0423f1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-3.5.0.tgz","integrity":"sha512-wtNdFdHMOW+zLF6rslu/o++g9vipa0xvcLPeb7r/HPWHERf5FJKwHAZKF3cv9tftOwxvaRyKw4KDgEqbaNMTPw==","signatures":[{"sig":"MEUCIQD5jUgHaKA6Omfch57HjE3bx0yRz5L9i/vAAN39v9RAbQIgLIxd0HUklT0DRcfaXAAnpg50Y9c65R4xBU5zeZeOOxs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","types":"index.d.ts","_shasum":"14448d7833f13c94d5275735ed171034cb0423f1","engines":{"node":">=6.0"},"gitHead":"4099c15efa36e9ff9076ed42a4bad25a8243eeba","scripts":{"test":"mocha test"},"_npmUser":{"name":"anonymous","email":"patrik@patriksimek.cz"},"deprecated":"The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.","repository":{"url":"git+https://github.com/patriksimek/vm2.git","type":"git"},"_npmVersion":"3.10.10","description":"vm2 is a sandbox that can run untrusted code with whitelisted Node's built-in modules. Securely!","directories":{},"_nodeVersion":"6.11.2","dependencies":{},"devDependencies":{"mocha":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vm2-3.5.0.tgz_1504180664705_0.4609578850213438","host":"s3://npm-registry-packages"}},"3.5.1":{"name":"vm2","version":"3.5.1","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"license":"MIT","_id":"vm2@3.5.1","maintainers":[{"name":"anonymous","email":"patrik@patriksimek.cz"}],"homepage":"https://github.com/patriksimek/vm2#readme","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"./bin/vm2"},"dist":{"shasum":"cca83fc10f4a2ce1975331a62a5f5a2cd6bc7f7f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-3.5.1.tgz","integrity":"sha512-dVxR6iJlpSXoXh5GATZNEgeXrmp1C2clrp/PZPUSUFF8A375kXQMAyCf6zy2KRqbM3wnZv9ijUwjFYuluOjO3A==","signatures":[{"sig":"MEUCIElEiegUH1Z9gllXhGluI8xjt4BacV0RubOVyoTNWaaxAiEA3RD6NGGBo6rfv7XxdxGxYetwuKg4eT15L0ZRFNzKQDk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","types":"index.d.ts","engines":{"node":">=6.0"},"gitHead":"c52b9eccadd9cfb2b7971060587bd361d6ee3057","scripts":{"test":"mocha test"},"_npmUser":{"name":"anonymous","email":"patrik@patriksimek.cz"},"deprecated":"The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.","repository":{"url":"git+https://github.com/patriksimek/vm2.git","type":"git"},"_npmVersion":"5.4.2","description":"vm2 is a sandbox that can run untrusted code with whitelisted Node's built-in modules. Securely!","directories":{},"_nodeVersion":"8.6.0","dependencies":{},"devDependencies":{"mocha":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vm2-3.5.1.tgz_1507074368422_0.08735427679494023","host":"s3://npm-registry-packages"}},"3.5.2":{"name":"vm2","version":"3.5.2","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"license":"MIT","_id":"vm2@3.5.2","maintainers":[{"name":"anonymous","email":"patrik@patriksimek.cz"}],"homepage":"https://github.com/patriksimek/vm2#readme","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"./bin/vm2"},"dist":{"shasum":"6ae7c75a867775946e1d4a66623374e0245150e0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-3.5.2.tgz","integrity":"sha512-imsgTODim0/3fSDA0g4SeYBF9oAuJnYXpILnA6GJ7rglNPLOv1s+CfgE7pqzOHFEKrJsogIxupE5fW2DI65rIg==","signatures":[{"sig":"MEUCIC7g9BH7ss/nXBQmMBMJ1BqyQ0fRXVZoaq3VLbiXHVopAiEAyBDfNehHiSRK1GZPvLuy1Xirrd1t19OIsqkZoxqnqJk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","types":"index.d.ts","engines":{"node":">=6.0"},"gitHead":"3589650819d5874b34fad097d22ba77c72a3aa3b","scripts":{"test":"mocha test"},"_npmUser":{"name":"anonymous","email":"patrik@patriksimek.cz"},"deprecated":"The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.","repository":{"url":"git+https://github.com/patriksimek/vm2.git","type":"git"},"_npmVersion":"5.4.2","description":"vm2 is a sandbox that can run untrusted code with whitelisted Node's built-in modules. Securely!","directories":{},"_nodeVersion":"8.6.0","dependencies":{},"devDependencies":{"mocha":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vm2-3.5.2.tgz_1507076478040_0.6423583410214633","host":"s3://npm-registry-packages"}},"3.6.0":{"name":"vm2","version":"3.6.0","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"license":"MIT","_id":"vm2@3.6.0","maintainers":[{"name":"anonymous","email":"orta.therox@gmail.com"},{"name":"anonymous","email":"patrik@patriksimek.cz"}],"homepage":"https://github.com/patriksimek/vm2#readme","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"./bin/vm2"},"dist":{"shasum":"a6e6370c57e6edd77decfb7b1ad64fc87dbf2d4e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-3.6.0.tgz","fileCount":14,"integrity":"sha512-NPfqWC4QZ5NizUpzCFYrnZlx63G5+DB19wenQNjWUP4/7SOkBQpTWIb1upnL6SZw8yhaAyQFXHc3U223MJme4w==","signatures":[{"sig":"MEUCICu1SnCZQmAh4RSgRSKhNWeLv0wypBX9u7HWVDz9AFPjAiEAjBriSU49x1reBd3X0hYy0a85bBXlqTmgDGiulHNyf8w=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":85945,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa9dR1CRA9TVsSAnZWagAAzbQP/2YeSjJdSL9BbuxsRgkL\nUADKyJDJxbTkU5yxV8jCoenEVq3COITDakh7DfrrK3ktW1YM6T8zEjsttQzp\nTlcXCWbY3puWknWBJgZtIwkVfY68Hdnckljgj1FoCOl1jLF31wt7dcWrO9Rj\nfYHzMflYGZN/7UV3RZKtKQBbrNH+dRg1L/fARFI8LUOkjjTKvjn/WOZSTp15\nmGXKEs2TLZJwA1gT2J2DPKuOsxh046U7Hj6K9aS+OnBTxCeDrIhA1h9gFAWm\nrFYQWi9WyYTKbPJBavURXRYS4UQ/mzGzcnwHK51bSBW3OxB+xjT3krOPrFLj\nS9aemEDk29Xwa8euGCdsHdllzfWkmhJnI6RbKDFZEYj94xCwloAt4N4zec86\nRx8eMUojaZ9YG0mtR0oNar8cVN/fJgcEfpspChuDBUSDIWp72TjNTYzoOWwf\njURM6jI+S36CD5s1P4kgFETGQOtPmtse3P1D9d03QpSUnuhqb8vk2QS9t54S\n1B/sBmsIqpOIs/MipJQ4tp3ZEP1gQy41pUIuyp9yyva7TcKavkZ+9qDLQDsc\nQpCPugI7CvoQgs8BEqnr+joTYOQ71ulv2eIhldKHBG7KvENF41E0gmorx8jH\n93GsISH88b6FxJpreOvCbZg4DPjfOlvXMEC441ln9Lo/KWjkvEDcCf/Lh3j6\n38T+\r\n=R5ee\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">=6.0"},"gitHead":"4afb167895a302c58d4d44f6641b67ad35f4a4f6","scripts":{"test":"mocha test"},"_npmUser":{"name":"anonymous","email":"orta.therox@gmail.com"},"deprecated":"The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.","repository":{"url":"git+https://github.com/patriksimek/vm2.git","type":"git"},"_npmVersion":"5.5.1","description":"vm2 is a sandbox that can run untrusted code with whitelisted Node's built-in modules. Securely!","directories":{},"_nodeVersion":"8.9.3","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vm2_3.6.0_1526060148250_0.3071298967295848","host":"s3://npm-registry-packages"}},"3.6.1":{"name":"vm2","version":"3.6.1","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"license":"MIT","_id":"vm2@3.6.1","maintainers":[{"name":"anonymous","email":"orta.therox@gmail.com"},{"name":"anonymous","email":"patrik@patriksimek.cz"}],"homepage":"https://github.com/patriksimek/vm2#readme","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"./bin/vm2"},"dist":{"shasum":"09c20e0d4adc8630a7dbbfc0bf0bce587c06cbb4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-3.6.1.tgz","fileCount":15,"integrity":"sha512-bdNTlSat0QCaMEG0u53AaEqK99LCnJPx11FmnG2pvTznkxSIcFOjnaN3jwznxDohYP52wD54wQw+vvAmtYsAXg==","signatures":[{"sig":"MEUCIQDm1eNlQnunBFUyVEb/ZMYu+YpiIWLhla9QOu8AStAxpgIgMZ0XVhhOXV/LOCg7wF6lvlyvwOOIzTlR8CvGwD1VGMY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":86469,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbM3GmCRA9TVsSAnZWagAADjsP/Arsq09TByMwrDJYMOLl\nn5eI4ykflMopzXTQB06peW8zmtkfE47wXlMYAG3FY47P0jikw9xHx2OGa7Rr\nRxDFmTJ3GbGEhmyy9uF0Icv95W+DOZEI9qoGiG8N5OFLsCIlks76D0jOpPj2\nhyqkO/ILM71ZxMpMaN8tHPGmfuqrQGTLELx23C4JLf/sYPVok3nWbmhDleIU\n8irRmfdC+qglHysKGc6yQAVxk076IT6uYt/JzBie9afcgwR6HRyY8IpuUVXC\nOBXHot4Fhq4icjziOGauLYbzGLtgVI+kadrTf/mZ6d5ql7gW4YtYxHnDFsaF\nnP4c9DpIKqsrjyW7v5UuBa697lk1Ul/O0FOU8g0+yYwmRtxnfkoknb+RJKbx\na8elQPziqKlRP55EzYsNjcISGfj1rvOFwX9SAf7U/cFUGiwygcip6xuogvig\n4E31Jm2y5cD6S6wVgbtaN7ddjYExF/nP15NtZ5GDZvlXSmA+XJaBIbTEbVin\noDXXwRnAkJyhoiaQcEdNkZy7B2FqF0ZokTFeSepfH5JdyB7mHusD7XjdjrK1\nulVTgq71LpUsmEezbeKQ0rSo0+ZcwsDtA6OHZt43CAxkhY0eKmqie4lKzJrd\np/FdqFQd5o1v5CCFtmLzi8zcc9G17kta0eyAUKRQIshIlGjc+MYFMUXI2R4k\nHfVB\r\n=SQJ+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">=6.0"},"gitHead":"4e2411e3cff9e0e7081427a7692d8758ccaa26d2","scripts":{"test":"mocha test"},"_npmUser":{"name":"anonymous","email":"patrik@patriksimek.cz"},"deprecated":"The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.","repository":{"url":"git+https://github.com/patriksimek/vm2.git","type":"git"},"_npmVersion":"6.1.0","description":"vm2 is a sandbox that can run untrusted code with whitelisted Node's built-in modules. Securely!","directories":{},"_nodeVersion":"8.11.2","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vm2_3.6.1_1530098086003_0.486079950334537","host":"s3://npm-registry-packages"}},"3.6.2":{"name":"vm2","version":"3.6.2","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"license":"MIT","_id":"vm2@3.6.2","maintainers":[{"name":"anonymous","email":"orta.therox@gmail.com"},{"name":"anonymous","email":"patrik@patriksimek.cz"}],"homepage":"https://github.com/patriksimek/vm2#readme","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"./bin/vm2"},"dist":{"shasum":"6b7a962e8ffeed98fbe35a194feb282ead56a551","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-3.6.2.tgz","fileCount":15,"integrity":"sha512-oeMJR6bCkxjjW9DKtKzzO+I2B1AnsHtPiaidxGATu6z7tInRf/AFS3tKMibn6ZttKDN7E4kVp+AaRSX8qImtfg==","signatures":[{"sig":"MEUCIANQQZPPrAQGO0A55rCbWfASXdliNvljqGJdOnwKD/7XAiEAisWAcnkT4XvsiEvdwgDsE9scB0HKo2/QeqgmBzINyRU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":87238,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbPnC7CRA9TVsSAnZWagAA0+sQAIoZJ9y92iwtBOxSR87b\no1OdBhMxoM/Y4WEpkgiXfOKS2oC1yRt+7cYISza398dkU5kq+BVvC1iJt6Dr\nu6Rux/t2dU0Ibdsa3hjxbVVcQidBp2Mv+h7082CHU5GcMl5CD23GHWkFtYOZ\n8G+dStx6WnuyQqnYzCuPSeDCBlifKbgG9E3UdrtHIMOs55vXiplTo064Q3Sn\noj0CrFYh6Ni1xhGynDiD2bEwgsG+5BgTJJ/XEtTj7EKOgGkhdKYeKdGAGg9j\nhCFwEHXkNUhMFM2dmQ3/aultK5eYRPCFOw4/HBJiK6bL7GhHvrdEN8jNVy+a\nPktcIONK0/L4wqnMxZTR0uQjak1egoBv1OVHv3BjWlIgNjwYE0SdhxZdR7EU\nFLW1bPlR+CmIA5ZGQlzeGsdmpD+BqNaEcBdFMV2ICE7cQHIFUgXTRLDT/zFh\nUcUELTi5PeSUYbSTEE34HVhSMgY2/RKysH1GofwCI86tKvighGrQbqt4FGpE\n+Y8v5q2h0kzht8ACq4s+iFwxM8/0y0yKS7ew723dQkh2f/0t0FSQ7ChNlXG2\nbzZYwfz26i0xc5+m8KeKYWmrN1i2pK52jPaVDfcPib63+pb9DeWPmcwSWX5m\nsxJTFTlxAeA8g1RmjqpeBNY6z0MvkfXr7CFUn8vqohxPk7mBsrXep9nIZQCg\ngzQu\r\n=b1hE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">=6.0"},"gitHead":"0049123a45769ae9159b651ad50d2658ea76043a","scripts":{"test":"mocha test"},"_npmUser":{"name":"anonymous","email":"patrik@patriksimek.cz"},"deprecated":"The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.","repository":{"url":"git+https://github.com/patriksimek/vm2.git","type":"git"},"_npmVersion":"6.1.0","description":"vm2 is a sandbox that can run untrusted code with whitelisted Node's built-in modules. Securely!","directories":{},"_nodeVersion":"8.11.2","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vm2_3.6.2_1530818747473_0.27868358730222","host":"s3://npm-registry-packages"}},"3.6.3":{"name":"vm2","version":"3.6.3","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"license":"MIT","_id":"vm2@3.6.3","maintainers":[{"name":"anonymous","email":"orta.therox@gmail.com"},{"name":"anonymous","email":"patrik@patriksimek.cz"}],"homepage":"https://github.com/patriksimek/vm2#readme","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"./bin/vm2"},"dist":{"shasum":"6dd426bb67a387d03055c5d276720f3f23203b72","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-3.6.3.tgz","fileCount":10,"integrity":"sha512-9sGC9T+R/afjDSVyG15ATUPzm5ZHzvIJvwkVmQ+4H2Cy55uDp0dXneXV4gXC7RMd2crWcL/awfdHjCsNSm+ufg==","signatures":[{"sig":"MEUCIGxGMOCp+hABlXkZRzmYQk6kjNFQTI+N2ZLEyvikTLAkAiEAyeGuDcUA6M8qiPUYXy8XCccsQcVVW2wldwxXhoYa6us=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61825,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbaDwkCRA9TVsSAnZWagAAvcAQAJpIt4xNYQ0wiw/2yjJh\ntIHY1B0qxb4fLU5p0+VECYicFMSfuuqQ+tkGa4gYTarYbhVpMu33bX/hHSCN\nm5acHvTmExjGBoJ3LrPvoqrHbcPwKsRBYYO37EMV7ONZW/EGxFDQxE0w0s5J\nlP4GvhYsaABBtGS/M74pzJPgoEU03BrXGecnOFrzDO31Asi7nVWdg4F0D+7c\ny+72Zk6E9YR3CBqZB4zOHDCGfTGTc/Al+f9EZMryynpfoJDHLoOFRwHwK1l/\nYdQW7SWCaAGJbQ1+obdrb7sj6xZt3Kl/Xk46VbSe4iFNTO5olZvnAvWHhHN1\nScUKPsn24FTFBu+cHh8NxpUszT+tPVZ7gaXHRf8YMaH8BCXL8PTQTLFql5DS\noJyzqR8e6grB86pZCZZdlH7tTapIydoBaGA087ywhGP2eumiBg2rrCDYKmxb\ndYjJM2AOWhODhIk6GQXVrdfIAC3K/p3GESd6BFbyy8jkbNFpQknTvolLZrDe\nGUpXqtcouvGxnPMXHrs4724OmB5OmK9DVS+JuAJfY2e2Ss52SSVCqclKJzRH\nO0HacAzR7jyme3t9go5oZarQwWpxJP9KOMLEV7hXY6afeaLmJR9itJVNIwY0\nyqxujVttv44RlkFP0mqgD1zS1VTMjH4c+nOr7/g5O8xOhC/kB7jzW5JA/f6d\njHsU\r\n=BpH4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">=6.0"},"gitHead":"d336095edbcd46a2c779213f403ac7696c9ac7c4","scripts":{"test":"mocha test"},"_npmUser":{"name":"anonymous","email":"patrik@patriksimek.cz"},"deprecated":"The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.","repository":{"url":"git+https://github.com/patriksimek/vm2.git","type":"git"},"_npmVersion":"6.1.0","description":"vm2 is a sandbox that can run untrusted code with whitelisted Node's built-in modules. Securely!","directories":{},"_nodeVersion":"8.11.2","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vm2_3.6.3_1533557796336_0.9133007559586435","host":"s3://npm-registry-packages"}},"3.6.4":{"name":"vm2","version":"3.6.4","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"license":"MIT","_id":"vm2@3.6.4","maintainers":[{"name":"anonymous","email":"orta.therox@gmail.com"},{"name":"anonymous","email":"patrik@patriksimek.cz"}],"homepage":"https://github.com/patriksimek/vm2#readme","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"./bin/vm2"},"dist":{"shasum":"88b27a9f328a0630671841363692a57d24dead33","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-3.6.4.tgz","fileCount":10,"integrity":"sha512-LFj8YL9DyGn+fwgG2J+10HyuIpdIRHHN8/3NwKoc2e2t2Pr0aXV/2OSODceDR7NP7VNr8RTqmxHRYcwbNvpbwg==","signatures":[{"sig":"MEYCIQDbl7wKfdO38iXOPPeasHr6b8PSfShoBMA3d84FkjPbnQIhALAgag+IiHit8kH2judzEI1bS9+ayJ3EkyBlzJLaOdam","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62192,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbx6u8CRA9TVsSAnZWagAAOWQQAKLDKfwI82JeXOa7EwVq\nBaq3yN31l0v9NKV+L/IOPSYqh1CVihMTxHAJOS85Q9IGfl2F7FUoWAnlBIAu\n9Mr7pwz8Bqlc/vMPTGQs6GS6PBxoFZBZM6yaQiEtEsRlma+VK55Km1Y/zhW5\noZc6jFdDheY0Sdqvwqpllg5UXuBApvr+ju9fOb9eRObdYFAtSjA59vd3Ty8r\noY38AMxlCUlLrmBVn3PxFXE1d4OpkmGw5ehmoAE+1BJJyRwsxhky3t87MMmQ\nEHptOIPhwBcOOTF8cGl3pCg3XBFAS8SvVvupSuI/+DmKA051QKJfQUXchGfp\n9IeHAO/mKmOKFgZf/E10kZxwfSfgaHj2M4hfWtf87G790fEoSXVnaVSSh5ME\n9pKvpUGtForh3cW3B+rA1bFLi+YBlj9cH/QZRwpV9+hJ6lV8pmnK9xOdPy9j\n/3R+l8sqDquJdLi8dHXmlmazXdjohLMNaIFZKKjzoPMb/uBRskCSLYC+6RDA\nmhzkIbTtYEkXkjksdQLdfEUga9pyEwpM4zKyRVEtf1zJmOhEo6YNASCwbSbz\n7d8XfO1qs2Tv54rKMWG1VDNWOeuekXI/PS9iMrI/T5GAufpIep/cjOKZ9Y7g\nj+Lx5bUgED7u146Tmxu2+QphlHDLjRwF2ejEilGMckR7t7FxlsaWPi5AYXoL\nAj4a\r\n=F09B\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">=6.0"},"gitHead":"07685d4281a981020480c7163067c8bb52e5ca46","scripts":{"test":"mocha test"},"_npmUser":{"name":"anonymous","email":"patrik@patriksimek.cz"},"deprecated":"The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.","repository":{"url":"git+https://github.com/patriksimek/vm2.git","type":"git"},"_npmVersion":"6.4.1","description":"vm2 is a sandbox that can run untrusted code with whitelisted Node's built-in modules. Securely!","directories":{},"_nodeVersion":"8.12.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vm2_3.6.4_1539812283865_0.2600635999205043","host":"s3://npm-registry-packages"}},"3.6.5":{"name":"vm2","version":"3.6.5","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"license":"MIT","_id":"vm2@3.6.5","maintainers":[{"name":"anonymous","email":"orta.therox@gmail.com"},{"name":"anonymous","email":"patrik@patriksimek.cz"}],"homepage":"https://github.com/patriksimek/vm2#readme","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"./bin/vm2"},"dist":{"shasum":"bef404bfe6fe8a96f65d3b69de20c440df2dc397","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-3.6.5.tgz","fileCount":10,"integrity":"sha512-aO7qdYWcAwS4mmn5AnDVS5+979HfZ3ncWlEeyy+cQicH/dooTg6l4shZ+A83PhVtNWkxIglLQ8d6UvXssyxCCg==","signatures":[{"sig":"MEUCIGU83N8MIKCGax2kZrLMbCsmwKUB2n88aGO6M82nHUgcAiEA2AK/iZFw4860SnX8+3tGjSifmKMysuNMVTPTWu5KVno=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62433,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcKYBLCRA9TVsSAnZWagAACIoP/ic6eQMIepyRGV58jy9Q\nwaKHj5eiJcK90UXPNepG2rTHQEAPV90+8fw8jtLtd6tyD77IDqDuDSZt7m7S\nTSTuBmff+E7DVbU+iiQW4puRvZ25C0kUZEOf2X2gpC6rPdT3xgS06Roduj6D\nBO+FiZKQeclREt00w2zLPY+ePc6b76VKe7p5HLIGle8xPrBTdURjUrv7mGgy\nqk5wdy579JWQW3akiItodn4Yz6SmjiW9rQBZi/CINX2orgyZek/pDwUWHfPI\nbcMahuJTo3puLWFF1ECQgUeOg0elLIyAlbtLYjTDIWeCO7ZEqS/LWv4rRCFG\n5+qrWitdHtP0Hyv8Bmwy8wU/do6IdGWIW6B5MdvXzdbrGnrzUHKuDjZaS7NS\nF84ROXFq2kxFaol4VSDQqDIB+87M8s2TiS2d31T8hwpJrExkEa91kwG8idn7\nPhGCECFBV9DGpVpAG8wRaSSQ8GeMA3FUCV1CxHnqfM4WIeRkhxhc21l43N7P\n/RSmbILnPlc2TrBrehN1uAvZrCkAvvhAGCK/0t5B+A3n1q/cK2KdzHKXZYaK\n47biR3UaN9VLWUYFb7iHqAgtxjN/DVaHa37DokkWQulZef6moMu0EocP+moJ\nF17JD9kbZx9RRQehy+dpTY18Tz9HjmdXmGDxtQ0eYDsgnGWQwn6isnFVxc7c\nghuf\r\n=USpi\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">=6.0"},"gitHead":"a483d789fa75b4b8728b92792a6d6e4a5219f67a","scripts":{"test":"mocha test"},"_npmUser":{"name":"anonymous","email":"patrik@patriksimek.cz"},"deprecated":"The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.","repository":{"url":"git+https://github.com/patriksimek/vm2.git","type":"git"},"_npmVersion":"6.4.1","description":"vm2 is a sandbox that can run untrusted code with whitelisted Node's built-in modules. Securely!","directories":{},"_nodeVersion":"8.12.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vm2_3.6.5_1546223690901_0.24287677606560654","host":"s3://npm-registry-packages"}},"3.6.6":{"name":"vm2","version":"3.6.6","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"license":"MIT","_id":"vm2@3.6.6","maintainers":[{"name":"anonymous","email":"orta.therox@gmail.com"},{"name":"anonymous","email":"patrik@patriksimek.cz"}],"homepage":"https://github.com/patriksimek/vm2#readme","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"./bin/vm2"},"dist":{"shasum":"169048f0139cf0d0e7c26597ba6ae78af72b28a8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-3.6.6.tgz","fileCount":12,"integrity":"sha512-SXC941SEoL0c8+qe+N/PVYsck6vN6fzdkObISlF+YlCHeMCHhHsFD4yuydr1azEYqE8qgxHHkGPOd+iiV9sUyA==","signatures":[{"sig":"MEYCIQDPAxwkl919nZ2X40vUJS0O3GnSFABrs3DDdqVBMjLdogIhAPmVP4bWkB6YzZVmrHFDrf5pEQ5KXSmOkyyG/2FVtqgA","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65281,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcLAiXCRA9TVsSAnZWagAAoMIP/18Z2cacTDxxHOQHxRs8\ntO09u6qhX4ugLUWn79Z27pOnQZPKrNkEbo9difxmcyzw5xpFHTwHfG0iI3iZ\ncnf8nYMZz2TaeNnvxPiICsogDyAKxThDkPhEysgn9G8MHjgwEMqUcCWICKiH\nXJxeAq2WD3VEy7G2OvK+/PX4wYecyyW3TciLTig0urrxErSZNCYeIBgm8+ob\nSzpd4B8xcm8Q4sM07gOgVqtK4wYkQjVWg/u0Mz3+LE+Os7qzemvxg6V/ovqe\nBYeFcHDWRczNTHxl47SAKGG8bld7u/eLLSKGa+v6PIOi+KkcHgqK//5B5Y+6\nTDANZ8Km3TuS4QWGBf/b3ohb9cqhxNjyN2ozfpMVH3ZcgRWVHI7tYC8ev5C/\nuhhjah5O9UmkRo+39yA9DVTh62dKntUUTnrsZ8C1JMEolkGrBtoBVn9u537f\nHuQzG+3rDukyZg5kTOkCvNFlTiat/8P9MZ3dRBX2SFklvKS2iXiUfnPymAsX\nX5WElUk4H+Q4ZHCQDjTy6maJMh59KjQQH/bAiBzGRxrxjHt8va1/tGxE5UMS\ndgt3GVYfJj99ayiRSKadrDMoTUsMTsZQCRNPge4Nu4etrEMc+C9BfivbuY3W\nUtCO8r/DelvdYK1x4hO8wwmWAaWR4J7Gs+vvfT7B6PFs4qRzREcwSxOPHqA1\nLqZ9\r\n=gKlt\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">=6.0"},"gitHead":"f8df1f6583115ed042fa966ef89f5e7e567c1456","scripts":{"test":"mocha test","pretest":"eslint ."},"_npmUser":{"name":"anonymous","email":"patrik@patriksimek.cz"},"deprecated":"The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.","repository":{"url":"git+https://github.com/patriksimek/vm2.git","type":"git"},"_npmVersion":"6.4.1","description":"vm2 is a sandbox that can run untrusted code with whitelisted Node's built-in modules. Securely!","directories":{},"_nodeVersion":"8.12.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^5.2.0","eslint":"^5.11.1","eslint-config-integromat":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/vm2_3.6.6_1546389649464_0.022902898699206142","host":"s3://npm-registry-packages"}},"3.6.7":{"name":"vm2","version":"3.6.7","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"license":"MIT","_id":"vm2@3.6.7","maintainers":[{"name":"anonymous","email":"orta.therox@gmail.com"},{"name":"anonymous","email":"patrik@patriksimek.cz"}],"homepage":"https://github.com/patriksimek/vm2#readme","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"./bin/vm2"},"dist":{"shasum":"261f1804e79d3919e891c26505faebcb5c140639","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-3.6.7.tgz","fileCount":12,"integrity":"sha512-ApKhXXlou9LJJttV2hwknleLCpRWdCYbbuuXvVdcIbOQdwn6EgcXaL8G6WUwbToi6kQkZkFRhdA2fvqDQnRgTw==","signatures":[{"sig":"MEUCIQCALkJyGeFF2GvMHSKiU9BvKRQ0cCgYvKBTkt1plNWV0QIgeQhNEA5h2OjJgOWzzYtHCepes8+c2MLwQQ/uDh0a+XA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":68871,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcS7pOCRA9TVsSAnZWagAA/nIP/jrMKSMTf65q4xmOkLPr\ntvJc4AmKEjEmNIxRd5AqBEegeJI6QbFSenr9p1kZ+TCS/MP3MljGwaCfM1Al\nAG2acRHHvaV3ldUMqiKHF6/p8cQbnPDxImTN9unUlsoONY9P0k7GjaTILV6H\ngGXlYyb5W4PUlBADsUFhns6/PtQn5Hv3eiWIU1LKBBIx7RbRezqqZQsfvflK\nK3yo8fbRypGi9xhNwKvNjJtUPL6lXzusbZsC/vFV/TAq56srdQBZTz8vSxO6\nu6Xqcny3gRElrP68eLSX7jIQIAlblRYZEo4iItlx5P4orAYb9QcdXlp3AYkz\nOYFrv5yYtDM/OQIx+fOMP3H1jN46Le413r9TeZjSqqhlXPMUbjl1mG8SzEYh\nGdj+xUwRpTjbU8Jp4SKQu1BO5Ydqcq9kLEBJgXbb2Q630CswffuVsFb8i5ES\nKfbqyYIGd/lzoiU7j+LXIHdx70FU1AQzsNJC05mzvzSIKWIBqCBZ+Chm0JJt\neP9xZASmHqm5IXox1am11HsK/vGCCLnUVn8cDGbsu/DQQnl4Bq705GZ0fQsp\n7rVps9HwgS9Te0Ndsv7kU4Yu8nIFiIKc4FjWFhvDe++A47it/IePTFk4ZcS5\njVq9GRLzahJVGtgpfCaqhVfOTZtHMvBjSyPLs+dNVyztWoYMEbXa5Smnu0UY\n+hJ8\r\n=vSoI\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">=6.0"},"gitHead":"e7c478fa72e13133fca4f0bf2c18da0f505ccd0a","scripts":{"test":"mocha test","pretest":"eslint ."},"_npmUser":{"name":"anonymous","email":"patrik@patriksimek.cz"},"deprecated":"The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.","repository":{"url":"git+https://github.com/patriksimek/vm2.git","type":"git"},"_npmVersion":"6.4.1","description":"vm2 is a sandbox that can run untrusted code with whitelisted Node's built-in modules. Securely!","directories":{},"_nodeVersion":"8.12.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^5.2.0","eslint":"^5.11.1","eslint-config-integromat":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/vm2_3.6.7_1548466765767_0.15673872604697725","host":"s3://npm-registry-packages"}},"3.6.8":{"name":"vm2","version":"3.6.8","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"license":"MIT","_id":"vm2@3.6.8","maintainers":[{"name":"anonymous","email":"orta.therox@gmail.com"},{"name":"anonymous","email":"patrik@patriksimek.cz"}],"homepage":"https://github.com/patriksimek/vm2#readme","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"./bin/vm2"},"dist":{"shasum":"24a3b8e646fc897590509b8e02cedd036bcacbab","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-3.6.8.tgz","fileCount":12,"integrity":"sha512-JbiQHHlR+FYx1X/OkwClIVlIrmX47j2D/4CAgetw0iI2oN8/op+iN2CalsFCQPURyCHoRdToLvdoVHEW3+grSQ==","signatures":[{"sig":"MEQCIGc7n1VTdJ8zM66qvPHr7uAPIE+D1oy3F9xAJJoNYP17AiBu2TJvsImLL1UcARE9vXNtdaZaaXuD9bvpDHsodHcdiA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":70309,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcTF1/CRA9TVsSAnZWagAAXpYP/iEmTS8yr60E1U5+2xBm\newzRh88TLivgFg8QCZLmYX1Ah4U46ZAGMYdcAsfivddk3AzbNX2UX8f6tbTE\nizwDiH3vqOWO9H0MhRLh5d0pyI6C3X1uZcfw/LOJV3UafCklO6hS+iLfduqA\n8wCOOQvMziiUb3i020oYBfdBHuipQ2egLwYJiAboLKrFuUAPYyKuBdY9Z9eh\niEhS9bmq9rXU+3EdlB1D8x73GS+5k3atb9CwtG1ivDSWoGFwnJnLjTl/iB5G\nBysA48kZ3MIQDTD95kO4Ut/5RxYS5h6DFAnQeB/SgydP0Cc8dOnQX1znm6zj\n8wUN//gx0ToLmEtkhEU62HBryQc56omEuR9Oiym7l7ONpPjmpANYevB8sBzL\nRZGuSKnJFcWs4RXzGhyvyQMElyW/Tceo342JeSZhnzT3wYEjmsQivbtqszBH\nhikabQOQN/p1JFq3IWFsYKCnh0n+V8MvKmRSyjlZPcc8YTiAyydHswfPvr2F\nvss+08YE5eK6awKjAsXSd05jgNKvhxXivsfkUU8cYARGPHwng3M8Wod76yr1\nDMVtU7usL9iFhe4KTKlMEAkTzEu6RzyewluEZ7bsxVf20o7Jwb8RkVMjI/jj\nL+D9n8RPMlkfAvoOvSlxy+by4Zq1/diZ1lANzQyRu/NHkK/nmJCelIqH0vsv\nbwgy\r\n=DEWg\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">=6.0"},"gitHead":"5a7c5e70df4265aebec81510aeca0f592dd60c2a","scripts":{"test":"mocha test","pretest":"eslint ."},"_npmUser":{"name":"anonymous","email":"patrik@patriksimek.cz"},"deprecated":"The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.","repository":{"url":"git+https://github.com/patriksimek/vm2.git","type":"git"},"_npmVersion":"6.4.1","description":"vm2 is a sandbox that can run untrusted code with whitelisted Node's built-in modules. Securely!","directories":{},"_nodeVersion":"8.12.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^5.2.0","eslint":"^5.11.1","eslint-config-integromat":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/vm2_3.6.8_1548508542451_0.96438317579464","host":"s3://npm-registry-packages"}},"3.6.9":{"name":"vm2","version":"3.6.9","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"license":"MIT","_id":"vm2@3.6.9","maintainers":[{"name":"anonymous","email":"orta.therox@gmail.com"},{"name":"anonymous","email":"patrik@patriksimek.cz"}],"homepage":"https://github.com/patriksimek/vm2#readme","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"./bin/vm2"},"dist":{"shasum":"d1318ee9a67dfa0ac94a71d8ee638e4e5cbf476b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-3.6.9.tgz","fileCount":12,"integrity":"sha512-IlG0nXTv4Z5G7k6943dRcngb2GSsyYdL/QhwfjP+WRyTtpEtR6WAGR9oD45wZWASkMqhzx0+CYTnnhfZHNZYCw==","signatures":[{"sig":"MEUCIFO38I9BNYsPQjDa0J53cN+iq906BbSvkcd5wL9RrivxAiEA5FaK0CDiFBSzca7ZPWpZ6gl69YTwCRFksdCu1qvAP+o=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":71376,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcTM+QCRA9TVsSAnZWagAAJlYP/R3vsLyzj/6SPUX4A12j\n35QSXOtfuLSmcuPWgXdoR9lZzAKVE+p98Jy2iiSv2xc5nlJTGIwxhvvBcOFS\nHIc19GnkDF4wFEPzfXuvUBr1zuWHD127MXHAadSA0w11MzhdN1fxIIg+fsEG\nOSETaGnmkgz4z+dPVFCndhpwBhvGKsePHLEgta6sgdaHWmpS625+91Ka4dWT\nkUpDw9xetflks9AWlpSmATUWo9uNYLuSRFcIqsHBmlRo1BTIFGxoBZ0htsGv\nXolN5u3Vl77MCOuE/ngu0qUMm2Tu1VOinFNaW9rr+UQrs9BXCEO3kPD49uH0\n6FyOe0vXpkCkA+cVY4wxOnaOD4595xEAs6u8OnZIdGTqNa6Me2/9DwFChvkV\nq62BMEUEX4jrHPDaLWpJ60xSd7guS6AXdgry7Ulfi1FKG2IM3xHvuGuCt4Rm\nsXV8rbhjgA0xNjb2Rn0pSbFKJWLXK9bYr79Zxx/vdh9QfOOOiml/iwIKwqxN\ncxJdeis6axoU5T2rBqCyKLurojhRuUZJKS0vgD0hH/xqs/XTYP6coOk008JH\nFeMj4YgqHXvENbCAPl7YTKu8YlHigsO3FsM0LVHUZMmnaSkkXEGRf95BLcnq\nmjpWsUdFn44BI8rCBK/YWwFog+Fqfb0+sBA5L2R3SRyg1i2gUwGmDrmJrZNI\nhfJS\r\n=XUcM\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">=6.0"},"gitHead":"b94ace6dee0ca5c6be3a63c561c6f8c3f4784f22","scripts":{"test":"mocha test","pretest":"eslint ."},"_npmUser":{"name":"anonymous","email":"patrik@patriksimek.cz"},"deprecated":"The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.","repository":{"url":"git+https://github.com/patriksimek/vm2.git","type":"git"},"_npmVersion":"6.4.1","description":"vm2 is a sandbox that can run untrusted code with whitelisted Node's built-in modules. Securely!","directories":{},"_nodeVersion":"8.12.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^5.2.0","eslint":"^5.11.1","eslint-config-integromat":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/vm2_3.6.9_1548537743583_0.6189306865033604","host":"s3://npm-registry-packages"}},"3.6.10":{"name":"vm2","version":"3.6.10","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"license":"MIT","_id":"vm2@3.6.10","maintainers":[{"name":"anonymous","email":"orta.therox@gmail.com"},{"name":"anonymous","email":"patrik@patriksimek.cz"}],"homepage":"https://github.com/patriksimek/vm2#readme","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"./bin/vm2"},"dist":{"shasum":"a9066c3849ad8a3ea35b9c0cf79a6589ce6e3cbe","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-3.6.10.tgz","fileCount":13,"integrity":"sha512-p4LBl7theIhmKaWPdCn25kEIG0bfDDEDx1lexXH7gcCu9pHIT+PKFgofwLHVHUGhe39lKExeaYVEZtdbQhdl2g==","signatures":[{"sig":"MEYCIQCC2QSV6K+6OodHPVL5AmnZzWMiE+66azerSRF1F5pvrwIhAIFKojvuhyaELeimQgXVJLrOIiAJDAtxlm25dNIkc+oR","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":72731,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcTvUhCRA9TVsSAnZWagAAj0YP/A5IJp5I0qNXEp+jaf1S\nPgdJhQbPDA9rT1DIDQ041jYU17g4IFDtlHq2GWB204dq7rzZAMJxEvqB4sRS\nrTNTzQufAHlCnssfbqB/7HMUDssM4AFpyM8j4StJDf/BsW5d16UR9ZxI4Lny\nba+CnrgjkINR4i/WAt1IQtZHKacYfxAiUbuHcg8GsWVkXfFQGTU41c2HO6XN\njnKChmBgK+3iNbWSMLXFB9+X4Gy2oSZGOmmcfXJAso6LiXlTYI4cgUYuXWWc\nStOb6o50BIEpvRCOH8ZHX+I5Snlf1JFbsJfGGqIc+pyrGajhme1hiqV59yBs\nw6HunFMht7UNLOHV8OUciEb82tf/G2ne2Xgd0YzRz6R62pg9xAUpN0Tt1T1I\nhIio66JQTutkwWgU96kvXOaV0N62PY/Lg/Ms2XYpd6ZRbfnmkdIkVXZ1myOt\nWe1K7yp+weLtfXRDHv++mNqYT01NMeJ88rRgCqQi+8ktwlRyAUq4jniPvniE\nPrKCMKfY4/fgLzKLgoWyrG7MBZyMSVoyEKPUkYKl4KdsroEHfBkW3jzYR393\n7T1eapW9A8+KNWVrLFsg8GBivHTAnQW4sASLrXxIeij5+1R5CeTi3yrHButn\nKR9UY6E+flQCNTmF5t7uqJn5dXMecSimV7P8a5AO8yk9nEwQivELrEp+s3YR\nAAeK\r\n=TpuV\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">=6.0"},"gitHead":"e4b8feafc98119ae911fa4d6ec4e7c60d84a1401","scripts":{"test":"mocha test","pretest":"eslint ."},"_npmUser":{"name":"anonymous","email":"patrik@patriksimek.cz"},"deprecated":"The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.","repository":{"url":"git+https://github.com/patriksimek/vm2.git","type":"git"},"_npmVersion":"6.4.1","description":"vm2 is a sandbox that can run untrusted code with whitelisted Node's built-in modules. Securely!","directories":{},"_nodeVersion":"10.12.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^5.2.0","eslint":"^5.11.1","eslint-config-integromat":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/vm2_3.6.10_1548678432548_0.215380038392873","host":"s3://npm-registry-packages"}},"3.6.11":{"name":"vm2","version":"3.6.11","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"license":"MIT","_id":"vm2@3.6.11","maintainers":[{"name":"anonymous","email":"orta.therox@gmail.com"},{"name":"anonymous","email":"patrik@patriksimek.cz"}],"homepage":"https://github.com/patriksimek/vm2#readme","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"./bin/vm2"},"dist":{"shasum":"35d725613777c37ea1c19cdd0225f1e8743b7f79","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-3.6.11.tgz","fileCount":12,"integrity":"sha512-l/+GDkesWKCRpk+3meLDauXisAmsfRZLvZwa/dBx1YKvP60NwXJsLHGEPW+t9fxdX+qjofF0/jN9eu42WRHAbQ==","signatures":[{"sig":"MEQCICRY3nMku/qNoWP1wQgblM4R1V3Sr3CeKAxu3YDPOVQ2AiBRfOg4WH0Xe6VTaH3PGFccK/eJPrdDL2mnTTBft2d3Ug==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":72726,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcqo00CRA9TVsSAnZWagAAkSYP/Rq5yGKr7AmiY7v9Wlov\nnQFCpcqYT7UENiSSkwc+VLob4xUVspFQjz5ChFuhQRz5jo0i2edHUzdTP963\nRRMIKOYlEenjDwlCLv8a6YZMQURqUeH3OF+Tsyvas3ASIkLrYMISNNet7U/6\nCpr3H/JqSC5owr2hr6npbG0KwGK9REmFyE9lUJ4NisvxTgJ8XZ78IUxpk8SH\n2DZqAnBs/kEWzkgbjxfh5zsQWfZOy4dL0hQBVJ0tzebXfSEtsNEXVHku5wOR\nW7NP4XjelsEhwtrN0WQjSRbWO4v0RQO3R3bB3NFOn4wySRU1CNuXGii06952\nxA9MdwxRkaxHw+JcM0n3HQ2KVSrxIvMHEBCms+Jh0coiaflHtFT/w8A0edrN\npTQCfrcVvFmAqs7Uzi5sA5M2aTPNCWUdnh0hUyE9xCLRThmczPn8GuY3uscH\n+O/AT1i5pKNmrMtNzzMRi7czUNLGCJ0z6qdWPKDuZaMnf54TTlchmj7z42IO\nRrKg54y70Y3BpNkDdTQYLBEyQ1drSfkCKPyzEpZGfeuMSYYFQLZXHeWCHIKQ\n42FkozmJBAs5ymW7PCABKKILWo4OUNy6VFPYOxSQUVZebO0yweYYFHLnBIG2\nmwyffmUY8W297x2gSTyZWcOiptVU0frFlT5cpTWyb+fYtuywuyeY6zW7QuLa\nw8k6\r\n=fN69\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">=6.0"},"gitHead":"fc62b2d7096ef1ea145840be5b1f2af5d769060b","scripts":{"test":"mocha test","pretest":"eslint ."},"_npmUser":{"name":"anonymous","email":"patrik@patriksimek.cz"},"deprecated":"The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.","repository":{"url":"git+https://github.com/patriksimek/vm2.git","type":"git"},"_npmVersion":"6.4.1","description":"vm2 is a sandbox that can run untrusted code with whitelisted Node's built-in modules. Securely!","directories":{},"_nodeVersion":"10.12.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^5.2.0","eslint":"^5.16.0","eslint-config-integromat":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/vm2_3.6.11_1554681139230_0.13060363864332736","host":"s3://npm-registry-packages"}},"3.7.0":{"name":"vm2","version":"3.7.0","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"license":"MIT","_id":"vm2@3.7.0","maintainers":[{"name":"anonymous","email":"orta.therox@gmail.com"},{"name":"anonymous","email":"patrik@patriksimek.cz"}],"homepage":"https://github.com/patriksimek/vm2#readme","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"./bin/vm2"},"dist":{"shasum":"ef4aa12c276e06f0b6b28b89e61cc0ef7eef2632","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-3.7.0.tgz","fileCount":12,"integrity":"sha512-bSiSk7jV5i7P5/CY4jlYq+4t8e3b5lLALgU6aWJE3opJcvednSQIVeJ0mYnm3cbGPCyi3IneJtq2bvJu1A7j9g==","signatures":[{"sig":"MEQCICCvJzoXruxOSYsVRhYzfkHgRGfxBgaTiO4jf9PJRZFnAiBMwJL9TpKSrEiSBPG4DgFbAaij9qxlJW/SCR4wS7EMJQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":73409,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJctGtTCRA9TVsSAnZWagAA+nMP/iryAqIhKspOjAcAbMhX\nq3icuhvLBCDttk7Qj1LzyyxBYoyjZnnhAlXEaKPC0QxE0w5kyWNw2VnPjTV5\nBKtDDU7CL+b1xutMlsBKsSQ3dzAfNj6+Lbptz2kYBNVC6NtabWfyI/x9yRyV\nJeB/6+00g4ehDE/J6Nx+aIvAdKXVE1gIPiptQlOhzULzDhddwfZRAO0APUFP\nBKJDpnvFeMQdfHdnNm72Zysn6H/o8X4nTfkA/HSkInT0dkExjXmEbH11YA8P\nu5CeUtIkRz6tv3ToQqLLMHVEL9pkaQzDi3q7mYbjRa5/xC0fIIH3iBIeCndx\nQECxgdWd0rYkwxWrp9t1xAr82JQxISST+te+9trrAsTM3IHEF97RpNQ71+Iq\n0/OHtG4C2q4dkIIpBVeLu01dGS5QRCOPEY/Dwni4zHg1LAzkDH4ztrY41vAb\n3VnB7JX5uc20EOLVCsBY7g9p4d7039Xh/App80VA3o1lqG1IhWKx1+I8Ck0Z\ndfooGFFGbTdi9W+5uJQLSxMvnJKQuUtTc4ZjLLv6Fb8lKL6EcasWpOfJWJxc\n7sQuVpYQ+k8BeqxSQm/8z6BntdAsFfzUdrtMZvVSFqSDOM2GHl4Xt+KGJEl/\nP5uLmQpRHPd8YvExpTqmdLx/qmsyiUtop1vrqG1lrkaw2b4keAkzg+11cnyr\naVJX\r\n=Y7lc\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">=6.0"},"gitHead":"e95a2182e0cdf34b9a93adc4a5155411a5a887d3","scripts":{"test":"mocha test","pretest":"eslint ."},"_npmUser":{"name":"anonymous","email":"patrik@patriksimek.cz"},"deprecated":"The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.","repository":{"url":"git+https://github.com/patriksimek/vm2.git","type":"git"},"_npmVersion":"6.4.1","description":"vm2 is a sandbox that can run untrusted code with whitelisted Node's built-in modules. Securely!","directories":{},"_nodeVersion":"10.12.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^5.2.0","eslint":"^5.16.0","eslint-config-integromat":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/vm2_3.7.0_1555327826930_0.5371736465000474","host":"s3://npm-registry-packages"}},"3.8.0":{"name":"vm2","version":"3.8.0","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"license":"MIT","_id":"vm2@3.8.0","maintainers":[{"name":"anonymous","email":"orta.therox@gmail.com"},{"name":"anonymous","email":"patrik@patriksimek.cz"}],"homepage":"https://github.com/patriksimek/vm2#readme","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"./bin/vm2"},"dist":{"shasum":"91645c6a8fe2a81836997c0fd8ca80c40004e3a7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-3.8.0.tgz","fileCount":13,"integrity":"sha512-NONkPUo3fTIHChCwy8IsZjUDj2q3OH6AX55AwknLHlNlH/xfoBbTc2hPCF1O8ns2Nt9vUIKsf4tSRt4oco6DGQ==","signatures":[{"sig":"MEQCIBREbgHU3mDHjJZMkHYLVmpFIhDciWZ63mla3t5wjWNRAiAJmpEV5zFj20c2ZrKHJmrrVO8xfOrWrbgWUfChVPL0Hg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":77015,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcvOWMCRA9TVsSAnZWagAAWUUP+wTi5SRYI8Ka13w4A0ui\nO+aNQsWd36shcDZ87RMXbtvuSxAzWuY+hy5sLwrcrzp+SCJbQVlPTFAM3CWm\nE2hWWiBDzbu5H7s8eCni+eF3rz0kXqYgYSBE17gyhaE1pevvdcvmTh64EZQ+\nNCzrISwSVfFtBuyko229B80dSlTDVlNroj0C2tR35uJOPw1d6uGrRiwiASot\nBztmqFr5cSni/9w1TafvjX2yjwFrpP7HS+buhsWKp/x/JPMmpCY/avh9qAVV\nNqgKCAGIcreHULhFpKC7E30DRrZlE2RIeU4V8OruUbqAD5lpz0lHNIMpdxBc\nd39HtYGtyZayfA21gtajxt7weYEulPu1dGV/OwfG84QJoCRcuLQ55R+FI+ad\n66i+nOxo6e+ErWsDerzUy3Y59J0yj2xdY/eY/Mruz2PFFo3cqxP6DsGQ8+s1\niogwjR+zK2EwqRrgjRwdbXCG34TLBUiddr3KkGSYPCoGVxQzyKkXnFnmHTrp\nvM67f7LOhYXewXRnlbTd0hxhAZY26ywJftSElbvYMy2zAoA58+kfW3+KzWLQ\nQFoNPDoAMNglGlZyTRbKD18b8/r7DjvpYDtqiru2rs0kwFqMLFFxkyZlpzMq\nUfMb1Sv+1GfH5HCpPE5sZqsEnvIjpot0J2OtFHsXn7zRR/KunEg4yikeDvQK\ntLKF\r\n=HWGa\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">=6.0"},"gitHead":"7f42f09517a99153e6698d5dc7d29d8a287783ab","scripts":{"test":"mocha test","pretest":"eslint ."},"_npmUser":{"name":"anonymous","email":"patrik@patriksimek.cz"},"deprecated":"The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.","repository":{"url":"git+https://github.com/patriksimek/vm2.git","type":"git"},"_npmVersion":"6.4.1","description":"vm2 is a sandbox that can run untrusted code with whitelisted Node's built-in modules. Securely!","directories":{},"_nodeVersion":"10.12.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^5.2.0","eslint":"^5.16.0","eslint-config-integromat":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/vm2_3.8.0_1555883403595_0.7814939231427518","host":"s3://npm-registry-packages"}},"3.8.1":{"name":"vm2","version":"3.8.1","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"license":"MIT","_id":"vm2@3.8.1","maintainers":[{"name":"anonymous","email":"orta.therox@gmail.com"},{"name":"anonymous","email":"patrik@patriksimek.cz"}],"homepage":"https://github.com/patriksimek/vm2#readme","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"./bin/vm2"},"dist":{"shasum":"82ac7845009aee79852429da49f0f4f114c644e5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-3.8.1.tgz","fileCount":13,"integrity":"sha512-ecR1+KFuP7KK2hpo8ItamW0F9pq4dJOd4o+r6OWvAsx2eXGPshP6uKE24qepGshT8v+TF0jpnzugFJak42LuZQ==","signatures":[{"sig":"MEUCIQCNb5ge49KMuqtAf63qn9vrRWknDEeZHTpo4319aSvuKwIgPRif/L53zRtjrmNtnofCNWI4SEJ+ECknMxnD55A2/ww=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":77621,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcy2JECRA9TVsSAnZWagAACoEQAJhNZz8PUpGWSi9yzEKP\nIE1H85Y3eQziQ3PBPaDeaJ0QJcUjnGcJqMo1ebRq2vDqaPJmmTk1rMAGNoB5\n/y50d0pGf05dwsS0PlTDNdD837SfaMMc6jIHl47vQuAYPA/J3DmadQGrjkzY\nzZsBJgpkCnP7vOcXYSy0J4VKQCwYZSXAVs97s8P4aKBN9WC55qzz+BpB+kWu\nfxS7wsEafAtrtLQhsyhuhC0TIonXrXEV25LpjUBQ7U7Pzodhi9hstSEHntof\nB6g9hRHUp49WlW4oe+zmkwc9+sbSWPI0nfZ4CnhdB6S8lWzuLupPyd8A1eZ2\nugavX7KLZyuIX3vB8PXbIvGQI7bd7XfprkDVJSY5LcaSYDfPxkSZuP85oVss\nv2QY66/782Sq6YzKTgHlB0JzfATAjIDqBKg9yEFmWVnwdTrl8GN3NqAD7kq5\nzs4ASPzcFeaYpbgIs2+8px8ZIOXYb/sCrlJlVGy63kQI7xVWpinCqTfbx2fM\nG5gAb+mVvyjSJRSUrXz6X8eop7f3bULsnI6NPurrG5GCnl3NQAtXcLornmI1\nUn8Ym+55B0EN0csNs9VSdRZY41/0Xrcy4oHJciT7q/PYUsbICf/LQd0Mh906\nz9bXisoI1sxogac6FUOdLcRRXX0mU6lmVe3g6sVREFrfNorpGqnCghWgiYmp\nTlKX\r\n=XxbG\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">=6.0"},"gitHead":"c5ded24f156d7f8168010173b22ea6bd9b6128ce","scripts":{"test":"mocha test","pretest":"eslint ."},"_npmUser":{"name":"anonymous","email":"patrik@patriksimek.cz"},"deprecated":"The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.","repository":{"url":"git+https://github.com/patriksimek/vm2.git","type":"git"},"_npmVersion":"6.4.1","description":"vm2 is a sandbox that can run untrusted code with whitelisted Node's built-in modules. Securely!","directories":{},"_nodeVersion":"10.12.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^5.2.0","eslint":"^5.16.0","eslint-config-integromat":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/vm2_3.8.1_1556832836062_0.9372301825837983","host":"s3://npm-registry-packages"}},"3.8.2":{"name":"vm2","version":"3.8.2","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"license":"MIT","_id":"vm2@3.8.2","maintainers":[{"name":"anonymous","email":"orta.therox@gmail.com"},{"name":"anonymous","email":"patrik@patriksimek.cz"}],"homepage":"https://github.com/patriksimek/vm2#readme","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"./bin/vm2"},"dist":{"shasum":"7744c40f669c079db4fda44b8edae64afd26cfb0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-3.8.2.tgz","fileCount":14,"integrity":"sha512-FE9slf0o4YoD2Jf7VEjytHTac2SMt2J4ahf9Tw9YLLVqJm0DQiMpmN+I0+RsnOZ0kb7PyeR1rLxathXZWJ23kg==","signatures":[{"sig":"MEYCIQDy7Xd8cVKKhi9YfL/u6SQpr43KLDFGudmn668eYfuUwAIhANLYblqqHLiiWRDV2mHXfpZQtctr/t4Y8PgVjHnNnPdJ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":78218,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdAYWTCRA9TVsSAnZWagAACsMQAJ21/4vP6sJ9Sw6Gq94L\n4Wf29LT80KLo9q1ZxjMstm1rIPEeHgyrl+bJae/fmF0D760UaTM03TqUtFyo\nMNiv7M42p2U6AdMt5HTKIqJGrKiYbXWUcxGrvY1wK9RuQmUzie2EllPeIkKq\nmzQSjzE9CAiWojtPsmuAeOjgtpkMZqeo0beZP5xj/uFk9qDJDUGvfGa7zpXP\n1tZ9EmH65ZQjmTLsl6KajNGLmUeO71ZVQ2dg5PTX3nu2JWAEEFZXkpoecRaC\nDBgHWlOHpu1j8TSkM7BBS70siAW/K6Wzvig6jKdvYpcitEyAt9RjE192aoXS\nyqQ1+pakSnewlWjr3B6xdVjhlxlE7D0s4QuISRR5T+AJnhHZ4dkvfsDEW9jz\nUHnceHmabaUfXkNUkMkdUKj4uyf8paTYZWIVOLugRnqFwRgvkaARD6KUTAKp\nuK20Igu/Q9nnGY28fWpqLL4k3lw0VsoGKqCPBnV7B8lq9LZF+ko2DbIxnb4M\nampgYZUBMTaJSvwdPOgs17FEZet/xTxYlZE4jxNv4QYegxvdGpLngohd9ugs\nkFmG3amCE++XQnHQmbcTmLl67x3UbJSgVZXzX8QKvXwBvyWFnjthaAJ7NBg4\n+nWiqHsslQGlE2VzmidogptSYkBTgKjK+BB4NboyuxapRgEY/NeczWr8fdho\nS2wn\r\n=NXiP\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">=6.0"},"gitHead":"9ba1683bd6638ab3cb98cb11d5ec9c6f37d44759","scripts":{"test":"mocha test","pretest":"eslint ."},"_npmUser":{"name":"anonymous","email":"patrik@patriksimek.cz"},"deprecated":"The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.","repository":{"url":"git+https://github.com/patriksimek/vm2.git","type":"git"},"_npmVersion":"6.4.1","description":"vm2 is a sandbox that can run untrusted code with whitelisted Node's built-in modules. Securely!","directories":{},"_nodeVersion":"10.12.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^5.2.0","eslint":"^5.16.0","eslint-config-integromat":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/vm2_3.8.2_1560380819204_0.45323458396955507","host":"s3://npm-registry-packages"}},"3.8.3":{"name":"vm2","version":"3.8.3","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"license":"MIT","_id":"vm2@3.8.3","maintainers":[{"name":"anonymous","email":"orta.therox@gmail.com"},{"name":"anonymous","email":"patrik@patriksimek.cz"}],"homepage":"https://github.com/patriksimek/vm2#readme","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"./bin/vm2"},"dist":{"shasum":"608d71f12584a1e898e60db5c4a61933bd7044bd","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-3.8.3.tgz","fileCount":14,"integrity":"sha512-ENQFzvyofYuR6ADLwK7v3eTVXPx8R4EPDoOBb4vDZ18doMH6UR2xe735VZKz+BrgIpi5SAt9laBqZJf1FlqHTw==","signatures":[{"sig":"MEYCIQD3sg69tHBj13kY09fjs2ttEh42D7zyuDILxxMTluryOwIhAJ2G8P191+NkpGgYPkh2+2hS1OslKD2VCRfunUYcFCRB","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":78592,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdQcR3CRA9TVsSAnZWagAAtycP/3rajfOgH3cuarwtBROM\n6LfQKZPqkU4AQNKWmhnIYRJtJPV5f+Cqi9C2gAo9zjd9D39yvXKa1ryfZ6kY\nAKqg63oIzNFbRiQFmfggsiXYdmTD3fja0ONzgWMmbHItpqR5ezxHjhGJIodP\nxa5MHNBGTkMKB+OESJnuH3DXi6lSoVeMWDLOPHe6iUHT5tznW8fQ7rHKCnis\n16v0E3MEA8YvTif/1lb2I3cWbv43Vjk4vvG9uObucQMQQhtuY2H9S1cKRQ7A\nVwKbpqD78QXDiyd9Wz0kQZirLu5Fh+Omb0rQPTpYHeKItWX85+C0498ymO9F\nZ0SjM6mZoTcAyzJ5ILtWDBkKfYQmpm5iRyoJRno/tB5bvBxMTHbpNc37Qdkd\ncfR1E3pJsR4PQk5qftpZL/y2zmjHyFxVAGh2dvn+K0LuZ7avqO32H3pHM1cW\nG1vc5qbAf268ADjVwbgcgibma+YTYuEPoVtykvRZCQ4XjrcK7AK8JHQ1CozH\np4U81p53BK2foWbWJDrBUbORc3eBAlrUEM+OsAkIgT0i+q0MSZh627lmUS4b\nbUsw6XVqNr6ymz3ueFf9dqFRgqtqwyNBStUNFOus1CvHoohWGEJUNyk0NXps\nKnUpt2hwYyPco4eXsitPHYlnDxn9bydkWBNG4LlJ9CpkFvTka7zMxe8VjwrL\neWUf\r\n=oxYZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">=6.0"},"gitHead":"12137a36c63a31ca940885cfc3d804e3980a33a5","scripts":{"test":"mocha test","pretest":"eslint ."},"_npmUser":{"name":"anonymous","email":"patrik@patriksimek.cz"},"deprecated":"The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.","repository":{"url":"git+https://github.com/patriksimek/vm2.git","type":"git"},"_npmVersion":"6.4.1","description":"vm2 is a sandbox that can run untrusted code with whitelisted Node's built-in modules. Securely!","directories":{},"_nodeVersion":"10.12.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^5.2.0","eslint":"^6.1.0","eslint-config-integromat":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/vm2_3.8.3_1564591222330_0.33275036987978135","host":"s3://npm-registry-packages"}},"3.8.4":{"name":"vm2","version":"3.8.4","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"license":"MIT","_id":"vm2@3.8.4","maintainers":[{"name":"anonymous","email":"orta.therox@gmail.com"},{"name":"anonymous","email":"patrik@patriksimek.cz"}],"homepage":"https://github.com/patriksimek/vm2#readme","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"./bin/vm2"},"dist":{"shasum":"882be9135467942d84d1af80b6e6549b57c69041","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-3.8.4.tgz","fileCount":14,"integrity":"sha512-5HThl+RBO/pwE9SF0kM4nLrpq5vXHBNk4BMX27xztvl0j1RsZ4/PMVJAu9rM9yfOtTo5KroL7XNX3031ExleSw==","signatures":[{"sig":"MEYCIQC5WvjALujAWO1caBY9YiCsklC8+RJjGlKxyMTMSCfvVQIhALGsij9usfLri4VKR2NJYuYbj67XU9PqrwsIsW1SzcXd","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":82906,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdeuA7CRA9TVsSAnZWagAAGzAP/jinHgBfM6RXwpf99XTu\nVla8BZiBnNx06Cp5nbVhaou2ZEd/vqJioGCUTJ2takfqM/Tv+5f2YajkGb7c\nB2rx4VmF/ek+nMKjdv/Axk8283QKz6CUwZ//8sk16o5SJbTZrkWOAZ3OnQ4F\nP1qJ6XpmNX9lMfdixbOMJFhoR1bg3MfXEdvkdHoG1fGue7hI0OOqxFWJ9lG6\nx3zARSZisYpK7/CyDeOl2h6CDcK7uFEOwYqgw9nKSBcoTttasjON5wlpV2Q0\nEDSwsCvvjMMnMXCZN/DF+b4lFd5hAdb0uMpHMYq0747s646wkEkwxwbM9E/B\nDgV9P6fNEYhdfw68wieqG2wvMD9nx8zHGVZMX3zzVEXFMMvHqYbe+gbXOEfw\nF1KXe+u+wMUvLVeew8V577s3ZGWN2FHeu20/mH+4zQSMgB6Lr+r3gAqC77Za\nOIrW1GFoXEu3ktHq49iMrVv9fcgt/laT83+Afy1baNouio1j145GMRtPiAxs\nQw6dgCtbOADQgBccww9a1eyPTd4FcPi/AowghsgelaEd9wgLC24cPg2BCSnu\nkRqhzJsO8ZjU8/h+KvDG5I1XdrWTdbq+nSdKNDKunvxcMxX7dNx4LkJaiGuS\nUVfppFhV97kmYYuFXxfW6YgKwbCMufQlDOHnAX3PllNcGylhUX0hYEpvC91i\nxdUx\r\n=gPzr\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">=6.0"},"gitHead":"22105517768d148a1dbd61fabe4cff2beb0ca0c1","scripts":{"test":"mocha test","pretest":"eslint ."},"_npmUser":{"name":"anonymous","email":"patrik@patriksimek.cz"},"deprecated":"The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.","repository":{"url":"git+https://github.com/patriksimek/vm2.git","type":"git"},"_npmVersion":"6.10.2","description":"vm2 is a sandbox that can run untrusted code with whitelisted Node's built-in modules. Securely!","directories":{},"_nodeVersion":"12.9.1","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^5.2.0","eslint":"^5.16.0","eslint-config-integromat":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/vm2_3.8.4_1568333882604_0.8041907861699569","host":"s3://npm-registry-packages"}},"3.9.0":{"name":"vm2","version":"3.9.0","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"license":"MIT","_id":"vm2@3.9.0","maintainers":[{"name":"anonymous","email":"orta.therox@gmail.com"},{"name":"anonymous","email":"patrik@patriksimek.cz"}],"homepage":"https://github.com/patriksimek/vm2#readme","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"bin/vm2"},"dist":{"shasum":"00fd8c84bffcef3ce12df29a8db39171f4a485a2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-3.9.0.tgz","fileCount":15,"integrity":"sha512-Bsnvxu50AryMYOsarSAuFmmAQO5X/H5fF/VCVkcDKTj3slrpHQuepUP45U90aaqjk4OdNmlmHfoF6oou3aUJRw==","signatures":[{"sig":"MEUCIQCGQ/IiE/wm4Q02vBJr4Aphx0TLQlpUt349x3Fz//HbEwIgSDW74OO3Us3tmmkFAINkveaZZqsZ80qj8sy7XTqFJr8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":108778,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJedprlCRA9TVsSAnZWagAApvQP/3Sbo7uoiDYLDbyrABop\nowj7J2wP7PySSFpD8eAkn7ykhcrbZvjjrci4LfYGQ07t39IFLACQZDa2mVo7\n76QHtfooYwWC8oT9Z7R/86AcODBrMftQTZ+mV8b5TmgCgrtpPFRqKxb4zFcA\nyJ8dkTfVnK2CGrYFMpfmYB4Xr3Y1vAgDWcl+MLSTqXFDFzFuYNaTDzWP2Bew\nZJLoCY2Aqpwkig0nJ9BTi0BGDPwXSc/TLZA2r1izEiE3xz+E3Ciid7Ckuvgg\njpviKErzjko4DoVcystS6wX1rmEvrRRXhywBtzHuX2x2gcsouNEjQysk4pz8\njX31KyCi1R2lIyfsTD06v6nHXz+6j+88axsGDXVBsDnZ8G2p6Emp6U/DLEh/\no8Ok9QcqzRw5zB8UJrlzoKAR8n6aJHYXi3miBK+Z5SuRvHAsyWf1eTqoW1Py\nS6fUmVZ6QLJHongSXfaiUoxp09rTSY+VTjWg3zfe/OmBZPtSUydOhg2XjoyC\nMmxmfM/M7GyYJ8EsqKz7gjsYiWghsjwS0LjRErqQnJ5KLPQlS3zEZGSuQ06E\nfKDbIeVD0IIdX/KuWeQKYsL3+b7frSz51aTpl+njPQKsxvPn4JDEaSv9sG67\nS6GFIGSZaB0YQr4VrTJbz+e4iUgV7cc759E36pejmu3lp6wXJbEV+wTkp3jv\n08r3\r\n=+key\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">=6.0"},"gitHead":"3ba34db87a381f412ebffd2d3de2f818e3295408","scripts":{"test":"mocha test","pretest":"eslint ."},"_npmUser":{"name":"anonymous","email":"patrik@patriksimek.cz"},"deprecated":"The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.","repository":{"url":"git+https://github.com/patriksimek/vm2.git","type":"git"},"_npmVersion":"6.13.4","description":"vm2 is a sandbox that can run untrusted code with whitelisted Node's built-in modules. Securely!","directories":{},"_nodeVersion":"12.14.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^6.2.2","eslint":"^5.16.0","eslint-config-integromat":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/vm2_3.9.0_1584831204640_0.873692546530783","host":"s3://npm-registry-packages"}},"3.9.1":{"name":"vm2","version":"3.9.1","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"license":"MIT","_id":"vm2@3.9.1","maintainers":[{"name":"anonymous","email":"orta.therox@gmail.com"},{"name":"anonymous","email":"patrik@patriksimek.cz"}],"homepage":"https://github.com/patriksimek/vm2#readme","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"bin/vm2"},"dist":{"shasum":"11b9390a07745fcfb0b682078e84fcad147aae97","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-3.9.1.tgz","fileCount":15,"integrity":"sha512-cLW0IgjWO9i4+kZ55mH7MWTmOHgAz1/lxGYpsEJa4KVB/obJZB7c/oeZGsw96srpVFJD4HIRqKc7HheO82moyA==","signatures":[{"sig":"MEUCIQC13OIMSW8jtR/4aodu8t9c6Yl4uXEVCQs513VIL2ScKwIgO7J7onvMRWsPTCoNdxs6B9XiCYOEjTWz5d1XP9zoZKE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":113112,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJegQA1CRA9TVsSAnZWagAA+5cQAJg8q6C5p5/MwTdWvOWB\nYODmfu7alEwPTqb8DUpqQ4YyNCwphqsAGDXQuCs8BJHqmkIiF+oIGHhhncKm\nmnFwhdkHRFhMWwip05WI88GW+hh0p4PkWomxsE94yjAyVd20az8E+wLVj6a7\nHfsruShfuRhFVxhW1ZugVEpjfetEw5MUlnQCy3t+/GSGrsGiS/4OgeLM2Ijc\nH34t4H5jrk0hSKmUF+gA/KpYjW1GJc/5FnC1OXPZn9+sbTsRwBnKLj3k/tM+\noBF20WDWUaF4gsc/synSV5PnIufPIWzD6NcSfeUR2FuvbK2Z6AfsMcZ5jifo\n6MmeV2AATedA0AhxeJluSBEuHxlVoR3k1ba+X3inekvNoKVuQ83Sdb8JzTN/\nH1GW57GfzNEH4Qd4PaofFgRLfav6/5mIHBI/A/Wr+sKd2ZVwNKBY43NX5Crk\n0/BymcTeKmF5ATDfO7hH6nqASpXU2IwHTwIO4FfURrFAxQ7IIpdVk48IddfO\nYAQaoJjFAKv5YXfu+FFciMaxR3sBg+CzUgNjlNvoy0oXPVQVz3/aM6J1xtH5\n37rrLFT59rvrxizuGe7A/3JdTmWU+D94rP/BazOvbzqk/oYcStvcjzirw0d6\n9pC3D1AZROyHM2/ApucG0mM4VkPgYiXsag91UPULU/x8uhPNuq3pki065xtG\nzCCT\r\n=rLzP\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">=6.0"},"gitHead":"2049e4d34d35ff4fc9cf83390571c7b06eeb2e77","scripts":{"test":"mocha test","pretest":"eslint ."},"_npmUser":{"name":"anonymous","email":"patrik@patriksimek.cz"},"deprecated":"The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.","repository":{"url":"git+https://github.com/patriksimek/vm2.git","type":"git"},"_npmVersion":"6.13.4","description":"vm2 is a sandbox that can run untrusted code with whitelisted Node's built-in modules. Securely!","directories":{},"_nodeVersion":"12.14.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^6.2.2","eslint":"^5.16.0","eslint-config-integromat":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/vm2_3.9.1_1585512501280_0.029488260169421965","host":"s3://npm-registry-packages"}},"3.9.2":{"name":"vm2","version":"3.9.2","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"license":"MIT","_id":"vm2@3.9.2","maintainers":[{"name":"anonymous","email":"orta.therox@gmail.com"},{"name":"anonymous","email":"patrik@patriksimek.cz"}],"homepage":"https://github.com/patriksimek/vm2#readme","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"bin/vm2"},"dist":{"shasum":"a4085d2d88a808a1b3c06d5478c2db3222a9cc30","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-3.9.2.tgz","fileCount":15,"integrity":"sha512-nzyFmHdy2FMg7mYraRytc2jr4QBaUY3TEGe3q3bK8EgS9WC98wxn2jrPxS/ruWm+JGzrEIIeufKweQzVoQEd+Q==","signatures":[{"sig":"MEYCIQCe6EOdP+KHrb0qiiW7C2bh7dVBX50KBA+qs1HVQbFkQwIhAKm86cYLdWtefvPqpG8sa/mEgbmquA6ZA5vst46/avWV","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":119546,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeqdmyCRA9TVsSAnZWagAAQIgP/jLdZdRmGT49SXtgX6NW\n0wAwaPIhK2pl74LO5XLA/TozxZiMo9805C7pAgv4vdCiGq9a4ypkIXDSxZXl\nu00ogi0fuhmTTEW+qSktjJWH8Hd6VZQLaT6slosnX9xkAQ5cNwn3Dic5jm9Q\n0tqBBvQcFzUewzNPFFX9MZXcIv3spqjkcNjvW9Fas3ljOMXh0OaslgceZrps\nB1nhZmq3HowPSCra2vvtxz0vW9VRgJiiu1ZrYpzdVGJBL5boCrUFZ3GWeIgB\nt07ZfZmnM9WXXh4j0fUuzuYljm/0Tt9Sx2Z9FgtIpnkV7wLkCM1Gb4Spw3Cm\nKaKKCkFBNVwSNX9f6Vb7GlOMQbQSMQMzcTimffT95Y5OnnzsBWtpyYaTGr54\nq/3GA0cbWgt+hbEsigj0qXv06ZK9eNkNnCwf6+kuM8h8pbgCzC/jSLMXghPp\nRuqp288gcgXHhyetuBcBqfAVYNQoyyW6l3kDFl7xYPKE88y2gD+oJ2Ml4ls7\nB0ZpmT4FOc8YXb8yhjv9jpODOzMMmRs7JyLOObcFgZeL3/wsRtS/eNO+qKMY\n83x9e3VC42e7VXWumH3mzD+VFhnYDutpoZxUsEQmdl+jJgLoE7LkJ4XBJ5bm\nMN5KzkCyp6w+47tjj1G1ZT0e1V9H+PH/8ZU5wdkAusY3p8VWqhRxPuPLx8mB\nC3vV\r\n=gzJr\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">=6.0"},"gitHead":"0bc2a4f6110d96f74e91315b790c0900ff43edab","scripts":{"test":"mocha test","pretest":"eslint ."},"_npmUser":{"name":"anonymous","email":"xmilia.hermit@gmail.com"},"deprecated":"The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.","repository":{"url":"git+https://github.com/patriksimek/vm2.git","type":"git"},"_npmVersion":"6.13.4","description":"vm2 is a sandbox that can run untrusted code with whitelisted Node's built-in modules. Securely!","directories":{},"_nodeVersion":"12.16.1","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^6.2.2","eslint":"^5.16.0","eslint-config-integromat":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/vm2_3.9.2_1588189617920_0.5218583271703985","host":"s3://npm-registry-packages"}},"3.9.3":{"name":"vm2","version":"3.9.3","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"license":"MIT","_id":"vm2@3.9.3","maintainers":[{"name":"anonymous","email":"patrik@patriksimek.cz"},{"name":"anonymous","email":"orta.therox@gmail.com"},{"name":"anonymous","email":"xmilia.hermit@gmail.com"}],"homepage":"https://github.com/patriksimek/vm2#readme","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"bin/vm2"},"dist":{"shasum":"29917f6cc081cc43a3f580c26c5b553fd3c91f40","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-3.9.3.tgz","fileCount":15,"integrity":"sha512-smLS+18RjXYMl9joyJxMNI9l4w7biW8ilSDaVRvFBDwOH8P0BK1ognFQTpg0wyQ6wIKLTblHJvROW692L/E53Q==","signatures":[{"sig":"MEYCIQDbLFpPyXCxYUsJCzGZMGkbcwhrDNDna2q5Pl/xtdPaHAIhAOkv3OxGDYF875YWUC1NBkE8N+we/9nhYaE+kpBKRRVT","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":121500,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJga24lCRA9TVsSAnZWagAAifEP/jyfAyGQPRQ8NbREwLPl\njUsX1+Bg5nBO+qVrxEMfTTKjlJVusYxvxWPbLBk7gl5WpRaJjGrpISp0a/JF\ndHHqInFUIuizdYiiNQlOEoco5Dlw4w+oZg1llRwADeT6yFy9n9EKmtvC1UpY\nhyYrwHMjbmCHjfG8CxyaRsQ5GM6NBe3m8HklbKaFTi9BmyTQCHEAogZLXZ4L\nrtSl2g0kjW1xMzOoqup3WkXtc1VqHyBy52PwrrkCYB6XHZRQ1b8h8rnB3++t\ndXcrPXDehQfcIO5rLcuSMEyHq2fgBY49WzqkHvVjlmDLyq75x2NeV1gxZjIk\nNIvtFoSR1mdZXT5VexkMJKfErIqQ+3u/fFwixOXjWUaIr4fNaRFGaHk7LwAa\n1qcsGfzDLHJ6KNmlL9Y4Btse1utlolTmEeiQRob317Z3N9/zn3NZhMvK1jTG\nwAMwZ9y0HwYOkjIfAuvYlmETmB7RU1+008CAZvx/uMooVypqB8UT6Qpi+1/a\n2S8BC5zt8PB0jpETccDqpMgHQQYotvYCcWIVr3/01F9mXUHUjOtc9JHPW983\nrfTlfzdgUvNXCOrfGztQOzIMmM8XqUEiJyC7/iEZbttwJyfufxlRDUxntw/8\nQfDJRiO8dNAJdfJdmKU/pzU1WjQ4AtzLlyCPt8+5rEQSaOTyZBj/ayx+6T4b\nnMj0\r\n=en3Z\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">=6.0"},"gitHead":"d470fd9684c30e95ce1d4b06b1873fc0d9497657","scripts":{"test":"mocha test","pretest":"eslint ."},"_npmUser":{"name":"anonymous","email":"patrik@patriksimek.cz"},"deprecated":"The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.","repository":{"url":"git+https://github.com/patriksimek/vm2.git","type":"git"},"_npmVersion":"6.14.8","description":"vm2 is a sandbox that can run untrusted code with whitelisted Node's built-in modules. Securely!","directories":{},"_nodeVersion":"12.20.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^6.2.2","eslint":"^5.16.0","eslint-config-integromat":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/vm2_3.9.3_1617653284815_0.8610401075045735","host":"s3://npm-registry-packages"}},"3.9.4":{"name":"vm2","version":"3.9.4","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"license":"MIT","_id":"vm2@3.9.4","maintainers":[{"name":"anonymous","email":"patrik@patriksimek.cz"},{"name":"anonymous","email":"orta.therox@gmail.com"},{"name":"anonymous","email":"xmilia.hermit@gmail.com"}],"homepage":"https://github.com/patriksimek/vm2#readme","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"bin/vm2"},"dist":{"shasum":"2e118290fefe7bd8ea09ebe2f5faf53730dbddaa","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-3.9.4.tgz","fileCount":15,"integrity":"sha512-sOdharrJ7KEePIpHekiWaY1DwgueuiBeX/ZBJUPgETsVlJsXuEx0K0/naATq2haFvJrvZnRiORQRubR0b7Ye6g==","signatures":[{"sig":"MEQCIBE80SrLY3cwkmG60U6Qui98QP+q787Ogr6LgtlDo0jCAiBgsEqxvJ87zEjhHYVww61rUMq8RnH44RTh/TTDmU9n7w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":128239},"main":"index.js","types":"index.d.ts","engines":{"node":">=6.0"},"gitHead":"1eabc2ae3f79b629f8680cec87336e3cd5aded3c","scripts":{"test":"mocha test","pretest":"eslint ."},"_npmUser":{"name":"anonymous","email":"xmilia.hermit@gmail.com"},"deprecated":"The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.","repository":{"url":"git+https://github.com/patriksimek/vm2.git","type":"git"},"_npmVersion":"6.14.7","description":"vm2 is a sandbox that can run untrusted code with whitelisted Node's built-in modules. Securely!","directories":{},"_nodeVersion":"14.8.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^6.2.2","eslint":"^5.16.0","eslint-config-integromat":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/vm2_3.9.4_1634058959696_0.3673237954765052","host":"s3://npm-registry-packages"}},"3.9.5":{"name":"vm2","version":"3.9.5","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"license":"MIT","_id":"vm2@3.9.5","maintainers":[{"name":"anonymous","email":"patrik@patriksimek.cz"},{"name":"anonymous","email":"orta.therox@gmail.com"},{"name":"anonymous","email":"xmilia.hermit@gmail.com"}],"homepage":"https://github.com/patriksimek/vm2#readme","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"bin/vm2"},"dist":{"shasum":"5288044860b4bbace443101fcd3bddb2a0aa2496","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-3.9.5.tgz","fileCount":16,"integrity":"sha512-LuCAHZN75H9tdrAiLFf030oW7nJV5xwNMuk1ymOZwopmuK3d2H4L1Kv4+GFHgarKiLfXXLFU+7LDABHnwOkWng==","signatures":[{"sig":"MEUCIDOB7z3p2anWFyBiLjUrpC9B8rZzVmEceNsfKDNObNkqAiEAqNIYx3+G+clw+dbB5Ro+Kby3wso5+VrwPubxCSUysPY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":128985,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh2/8FCRA9TVsSAnZWagAAaMIP/A2qNyCpU8/N6YRmXN9B\n1KhFYNYjvlnELZWlPyvwO6H9GgTDDhEEAQfMuJ6zjwkhdEbOlYAO6LrLoGJR\n59BQoZm0FL8bbnRUDl17YH43zodiBXJC/bRrHuhAg96YyAp/P9NWjhNKJJId\nEM7AQ9k7i8rJ7T+n0yoqzSnhed2mS/du5pp28H6xQ/aawaCo3aOospDl6AbR\nphR1D8aNtZNb0++r38lnMPUZnhu0ZOAZ5PudXziNu69AXwWj4NLl22hxnkjP\nKNVWpONK2jwjgbmHZQTMt9O0LaVmlznPNdTOhqgOsMs9gf9yvZdfpx9wytwW\nbnzV1WUzoJXFseJRE9iscBZpbAvfvHe5T7NmOYKcOcvfHEelkhiTgyV2UGxE\nowkPVIuC9ssandWyyuezWAE7P6/lg5oSp46rUFQ/yjOYybWBRy7rLjtg7TI8\nftOkYLg//TyFlqrqyOxA2k+FScEraX83KuzuhbeaM9K+SvIng6WRNnK3Xp33\nxsM/2laCybB6QuLY1EWkbTu7t3x1BFpt+Bo4CLFBjARevzQmjoEhYkI3X0bX\ngXmEE183zQJgAOM1S4KkzfHNT6Rvm4XiN/gLqFRYBoKpHs/JoZmrt2nbMyk2\nDrG+3RJ0Cvhv8SFd0fGxpIZ/8jpfhrCo5Ze7a8DCRudxwCQ+DBJl0AoeLswc\nDD1B\r\n=U0Sz\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">=6.0"},"gitHead":"05e5e65681ba4b56c911e3dfe8437057c68d8877","scripts":{"test":"mocha test","pretest":"eslint ."},"_npmUser":{"name":"anonymous","email":"xmilia.hermit@gmail.com"},"deprecated":"The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.","repository":{"url":"git+https://github.com/patriksimek/vm2.git","type":"git"},"_npmVersion":"6.14.7","description":"vm2 is a sandbox that can run untrusted code with whitelisted Node's built-in modules. Securely!","directories":{},"_nodeVersion":"14.8.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^6.2.2","eslint":"^5.16.0","eslint-config-integromat":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/vm2_3.9.5_1634493303136_0.25595844616161756","host":"s3://npm-registry-packages"}},"3.9.6":{"name":"vm2","version":"3.9.6","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"license":"MIT","_id":"vm2@3.9.6","maintainers":[{"name":"anonymous","email":"patrik@patriksimek.cz"},{"name":"anonymous","email":"orta.therox@gmail.com"},{"name":"anonymous","email":"xmilia.hermit@gmail.com"}],"homepage":"https://github.com/patriksimek/vm2#readme","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"bin/vm2"},"dist":{"shasum":"2f9b2fd0d82802dcd872e1011869ba8ae6b74778","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-3.9.6.tgz","fileCount":22,"integrity":"sha512-BF7euUjgO+ezsz2UKex9kO9M/PtDNOf+KEpiqNepZsgf1MT7JYfJEIvG8BoYhZMLAVjqevFJ0UmXNuETe8m5dQ==","signatures":[{"sig":"MEYCIQCg8T9Mm4QX7h/jmv4H1bTlTqHL5Jd1ZY2CLHmy5bnJjwIhAI0/S6XBjV5WmLhPHovQcZEzjEbgFLqP2V/WtqpqMMUr","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":200141,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiAm9+CRA9TVsSAnZWagAAjQcP/joIFdyA30Q2KQyQfTNt\n7N0qtGO53d1zBrBUFey6YOFQMh1+z2o8vCCQ6VNVgC7YQDdNAWb4qw2Y6Byf\nhCz4NjvvcN4Dugq3nzvC3vQJ51yoQQMu/HuLjEBdJR/srr22qGZUnCGFZCbU\nLp/BYGCcUVOt94Zy6JjWaog273EKusBEPsAT+A696NJWth3ldikEge6KNh29\nXBPB0x60zavlzhX7FcZCBK4xyonUc/ZsBnpI0/rVwuT5bF/DIVSk2xKUVddX\nTgniDHfUkiI7rM6Hg9oXq07EOyil8LdWA7Y7DPmIJ8hEbP67v3st8YkPZeVF\nL2niQ79evTZq3i/hjet5T1hloSaeKDz2yuiuTSIxPtaWkdxyQQDhkQj4XI5b\n1qJ7+WaYVi90OttcVTbe2HLMInBNVZC1IFZu9IF6z8ccW+/nFvx6Ire65JJ7\nNu4CTUTCHkD7zjDqFQK29gC74oc3GL5e3ZBXQdHq9KziTPxS0bxmokpsRMzU\nzeAJZ57zlJiaiuLITzSiGs9+2KuuEJESjDlfP/lFNrK3T1y8QBeCumsjus11\nRwNTIezpKF1Vxx5JVXVUrqAlSkpmDndQl/jeHDUt4Vb9UT21C7RLVx/GHIfL\naR43jGn3E0yjk3gEl6IxbYXdPgqkg1imoTZUbseHnwzSLT7Xb47k8+Na6Zzp\nOMll\r\n=rM2O\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">=6.0"},"gitHead":"94bf9183b208c85c0946f40085819b8244cd482c","scripts":{"test":"mocha test","pretest":"eslint ."},"_npmUser":{"name":"anonymous","email":"xmilia.hermit@gmail.com"},"deprecated":"The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.","repository":{"url":"git+https://github.com/patriksimek/vm2.git","type":"git"},"_npmVersion":"8.1.4","description":"vm2 is a sandbox that can run untrusted code with whitelisted Node's built-in modules. Securely!","directories":{},"sideEffects":false,"_nodeVersion":"17.2.0","dependencies":{"acorn":"^8.7.0","acorn-walk":"^8.2.0"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^6.2.2","eslint":"^5.16.0","eslint-config-integromat":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/vm2_3.9.6_1644326782678_0.1505573322031042","host":"s3://npm-registry-packages"}},"3.9.7":{"name":"vm2","version":"3.9.7","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"license":"MIT","_id":"vm2@3.9.7","maintainers":[{"name":"anonymous","email":"patrik@patriksimek.cz"},{"name":"anonymous","email":"orta.therox@gmail.com"},{"name":"anonymous","email":"xmilia.hermit@gmail.com"}],"homepage":"https://github.com/patriksimek/vm2#readme","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"bin/vm2"},"dist":{"shasum":"bb87aa677c97c61e23a6cb6547e44e990517a6f6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-3.9.7.tgz","fileCount":22,"integrity":"sha512-g/GZ7V0Mlmch3eDVOATvAXr1GsJNg6kQ5PjvYy3HbJMCRn5slNbo/u73Uy7r5yUej1cRa3ZjtoVwcWSQuQ/fow==","signatures":[{"sig":"MEYCIQDLMQ0gL/GG+FqpQV48R75b0O1r88CyHIry7CuRUuDkYgIhAOO1505A/Pi7SWncAXW1CY22JvmNFibWt7bMcTulSoFe","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":201579,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiBSyPCRA9TVsSAnZWagAAfs4P/2KdOfNHNltLCwaTejsD\ntLr+/4cyQw1m2YNRz31dZOadDPa+FiInUA0OpwRzZvirnqpY/CP1bpb6TIA2\nE5D8NZ0+n2nTzSZ3EEUZi1L+0TF1e5u2dVOh0hIr4cVLgaJEIoTGdu+Hj40Z\nF4VWsxqYzJXcQd3Avom5kj8BWoHHNRjAogMEcew9gT2pMO/Ug/O/GaxkVXIr\nno+56MgQ3v3y5ado7/FH+kS1/1N3Q41G910qG3BCATCHz5Vx4rdzM80ucFIv\nhr2lPoN7/4UKGT9RGEK3kQAQ3+1sjExJb0mywXxoqPcCJ2jqK+U7syFCmRd4\n4ry91JdK5w7GZ9Zmh2fQLQyoyc+KGCEj6bREP+D5FEJJrsdGDGy+pgfrboJj\n1DsZXrzjRDchdEousBr87PAi2w8kLMy/yhG6e58Q00uTcVjKz+rXajpDMkTu\nOcTatNORBZIMENZKV2C7KskKTGZaXyBeWH+0PjlxZmIcJm1DT16nakEiBPsn\nYyDGrKVABk98ALsgBCJSwepGkodqWbh0KNsQPQaxbJ/EnobPTTFwFpbhlOQR\nq9fqO1+4BtkkQu0HguN4fN+adU5MgRSMgT0JZgye0U5rO5wmv5ujde1jVxWv\n88SDgmhVb+h30uLPRzYc5Hc5PYHHhBztzT8tU/A5gFycNk3yaE8SA50I52L5\nJ35L\r\n=oDnd\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">=6.0"},"gitHead":"31c720031cd5935de69b860f27a98ef1b44b8666","scripts":{"test":"mocha test","pretest":"eslint ."},"_npmUser":{"name":"anonymous","email":"xmilia.hermit@gmail.com"},"deprecated":"The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.","repository":{"url":"git+https://github.com/patriksimek/vm2.git","type":"git"},"_npmVersion":"8.1.4","description":"vm2 is a sandbox that can run untrusted code with whitelisted Node's built-in modules. Securely!","directories":{},"sideEffects":false,"_nodeVersion":"17.2.0","dependencies":{"acorn":"^8.7.0","acorn-walk":"^8.2.0"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^6.2.2","eslint":"^5.16.0","eslint-config-integromat":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/vm2_3.9.7_1644506255719_0.06529540022000502","host":"s3://npm-registry-packages"}},"3.9.8":{"name":"vm2","version":"3.9.8","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"license":"MIT","_id":"vm2@3.9.8","maintainers":[{"name":"anonymous","email":"patrik@patriksimek.cz"},{"name":"anonymous","email":"orta.therox@gmail.com"},{"name":"anonymous","email":"xmilia.hermit@gmail.com"}],"homepage":"https://github.com/patriksimek/vm2#readme","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"bin/vm2"},"dist":{"shasum":"e99c000db042735cd2f94d8db6c42163a17be04e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-3.9.8.tgz","fileCount":22,"integrity":"sha512-/1PYg/BwdKzMPo8maOZ0heT7DLI0DAFTm7YQaz/Lim9oIaFZsJs3EdtalvXuBfZwczNwsYhju75NW4d6E+4q+w==","signatures":[{"sig":"MEQCIE7U3+cc5svb936/PkzLLflHekISd5VbzbBUyJWBWZ+PAiBY6bvpu6KhgzFrdKLghOYNvfPsojHGTu0PnvBY6I9FfQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":202528,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiDPHgCRA9TVsSAnZWagAAiaMP/1y1Vx5T2qcD/n1mIJiP\nRfH9CXy09hBAS9IeijeWiB6JuPHcV7+qTYZD6owBP/xddoV2GT1mj3T5eroh\nUULN2Ts0StdUhihvKQdsauLzeMZhIxQNLdgzHD9YNstaOf0kDgZTcMZ29Z7/\nEW0C9aQ+INu0lq82LvaHhKbMYY9ZtPqMIde1g+mEVb3yvnG6EUQHDO4YeXPE\nS4Smlm04AbAuBdZZU+CXTA2UwcLv1ZPBzXNgxmrhnQEG19eY10R3AtdmnQis\nRD13jxoGdWHfhKZW62HzM9KUFFbI0PWtlH+vnKdOMiALk2GYIBBdniv60AI6\n5R1CNtjOCaPv5feFyFK7C2e41lUdCq1dnjHODhDELzVJzHT0wUM0vxdoHtSH\niWrYrMn5jHgzph6EFQG94kZTF/inIXWn/EreNVhPYaFJ/hJxP/UBldr6o0mF\n0TCTu28cT0OqNxVSoL6JYdTx7n72nx7Ru+O3gW1HZYTeL0s9m5kn036d3CYs\nexkcxHotAsmR3ltaK/SofdtWIYHrfUWlCq67o0jyPBs8CeVpyhSbuOcptw7C\nLRqBsa3dd7saq3map+NYKQcDFcM+qL/c3CFK4vbVjXkYjSpAOISuR6jfAdV2\neeh1Cqp5yzc+heuWr+/XpMZLSC3LhanUPFk9GBcba31l9hJzovx9cQBq5sFp\nWc5A\r\n=HCmC\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">=6.0"},"gitHead":"925e3e665acfa37dd3db0ea8e7f02b57277677e8","scripts":{"test":"mocha test","pretest":"eslint ."},"_npmUser":{"name":"anonymous","email":"xmilia.hermit@gmail.com"},"deprecated":"The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.","repository":{"url":"git+https://github.com/patriksimek/vm2.git","type":"git"},"_npmVersion":"8.1.4","description":"vm2 is a sandbox that can run untrusted code with whitelisted Node's built-in modules. Securely!","directories":{},"sideEffects":false,"_nodeVersion":"17.2.0","dependencies":{"acorn":"^8.7.0","acorn-walk":"^8.2.0"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^6.2.2","eslint":"^5.16.0","eslint-config-integromat":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/vm2_3.9.8_1645015520440_0.9106410468434891","host":"s3://npm-registry-packages"}},"3.9.9":{"name":"vm2","version":"3.9.9","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"license":"MIT","_id":"vm2@3.9.9","maintainers":[{"name":"anonymous","email":"patrik@patriksimek.cz"},{"name":"anonymous","email":"orta.therox@gmail.com"},{"name":"anonymous","email":"xmilia.hermit@gmail.com"}],"homepage":"https://github.com/patriksimek/vm2#readme","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"bin/vm2"},"dist":{"shasum":"c0507bc5fbb99388fad837d228badaaeb499ddc5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-3.9.9.tgz","fileCount":22,"integrity":"sha512-xwTm7NLh/uOjARRBs8/95H0e8fT3Ukw5D/JJWhxMbhKzNh1Nu981jQKvkep9iKYNxzlVrdzD0mlBGkDKZWprlw==","signatures":[{"sig":"MEUCIGPWlJNwWgP1VhWlKG7qcJrWrxesz66PPqKMsIy/fiZAAiEArcTN0+aIIItzeDkMJoc1/7667pyzVf7bPcyReVoq9Ao=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":206019,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiF/f0ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqjnQ//d/+ymh+gPxnqg6KGkosfIzL9e009D9Yv4+a9RsovCO3Bn3rk\r\nTH7SMOZhjFAJCzOhI834gLtja/OZhVE/SJMZ4h86ym4Ol1zSsiHRaInhPkQr\r\nb+9SNoXnVOZGfp4Vi7jK2DE79VXezHODfgUAVYd+Q5/UUXbzczpE2bwcSxet\r\nlrj74jUWzYWb+dFuPzHxxo2kHEC2FTD3cMEH/E0qAXYwSr/tC+XcOfmRC5vM\r\nMe72jj75+msjGGljTzf8N25BkBWmrd6NnO9RPlvRLyd+AsCZfl1E1XKqwNhI\r\nDpdCLbPaYjkWY93Bkk6FwCDcX0hA3RDz1WOblIlPYalWcNayRa7DxABKvgN3\r\nvF7O9RTYrrS1iuxzPuMN835n+jErAC1DfWPoZHw1YiAaQftYfk/Sh9IdMaxU\r\nzkef47nUSiLVJgkeaaAm1AifLCNdIr0NZ1QFc/tZ+xsBe2V65xmtyxloXhIl\r\n1LboFxyCfx+PGFGDKcQJE9h4wX9EIcltprY1F+06QhprHiT02RpOi0u0tTKJ\r\nkTVX9wc7Ccoju71j8jt/0kJ9xUakaUKkwzZsoJ1oN89clAgdVeKQToYRpdsc\r\ntuI2gTQDfBaxzUtOWqe9pzIiUsEUhi5MCEIji/TH3ZVHAdYs35ZKdCfIPNLl\r\nhFmG1O5SL5DLp0h8GNOfETcmnyE9w0bm9Q0=\r\n=Ec6E\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">=6.0"},"gitHead":"733579359f53d4b0c2c1beb95dc9d52eb6dc20d9","scripts":{"test":"mocha test","pretest":"eslint ."},"_npmUser":{"name":"anonymous","email":"xmilia.hermit@gmail.com"},"deprecated":"The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.","repository":{"url":"git+https://github.com/patriksimek/vm2.git","type":"git"},"_npmVersion":"8.1.4","description":"vm2 is a sandbox that can run untrusted code with whitelisted Node's built-in modules. Securely!","directories":{},"sideEffects":false,"_nodeVersion":"17.2.0","dependencies":{"acorn":"^8.7.0","acorn-walk":"^8.2.0"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^6.2.2","eslint":"^5.16.0","eslint-config-integromat":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/vm2_3.9.9_1645737971967_0.1953006923424534","host":"s3://npm-registry-packages"}},"3.9.10":{"name":"vm2","version":"3.9.10","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"license":"MIT","_id":"vm2@3.9.10","maintainers":[{"name":"anonymous","email":"patrik@patriksimek.cz"},{"name":"anonymous","email":"orta.therox@gmail.com"},{"name":"anonymous","email":"xmilia.hermit@gmail.com"}],"homepage":"https://github.com/patriksimek/vm2#readme","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"bin/vm2"},"dist":{"shasum":"c66543096b5c44c8861a6465805c23c7cc996a44","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-3.9.10.tgz","fileCount":22,"integrity":"sha512-AuECTSvwu2OHLAZYhG716YzwodKCIJxB6u1zG7PgSQwIgAlEaoXH52bxdcvT8GkGjnYK7r7yWDW0m0sOsPuBjQ==","signatures":[{"sig":"MEQCIERu1Rwd2HDuexU0fc59gdjEKEWirtyI66ij9o8IqPlkAiB1s1AipWgRFyxxM9HVO5BU4Eq0KY47qN8k9ehTWN90Jg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":206989,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJixDGTACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqb+RAAl04O+UvFczygqxYOa5ox/f6/Ky9WbxYf2F4zgfFga+94z6Al\r\nm2PIPgVQjPHxuwln8jebcoYy2N3RgrV94ml4Hc3CtdBOL+Ksx6nKNjFqO3J0\r\nayJPsNPoJs/XneUOgvRH84IUq2Heu+zhFsm14tXq0bxDFtfUqYKQ9GHpEa0P\r\nrENfjmw3vHQ8F//yz/eR7zKjusXtNRQfY+2unSsU6V4j5lP+a1W0QE6Z9kOG\r\nbb0jqj3i56ACDfJ/XsW5RWeHtibGXs/01bXJC9FumqmW4FeAuEemnR+wUNoU\r\nZHrWgjvkvIcfYSDKIYUYSyfxW6eKZ0WNNK4+HT2c1AMNEkRppr3GEE/eyf9b\r\n4sMTscsG0TXLeP7LzvOfXanjtZpftHyRtJ4R/MZ5M0ftGL6pyWcnSjG938as\r\nvmu1jrjaswtfUBbCLCYyMjAHiD6sgwvcoigHnS90oUdg8w6ds0t2NW4+qlWQ\r\nA5iVfgXKSlYa8qn8ftzjaFWbgLoJyhmbnygZUlp2GG/3ltOLVOl3sWZVd0S2\r\nV3Sz7c4h08UISEPSgKAwjdlcYGsuISyxvpiyRStCRvRcZAZlI+gsoENVbLux\r\nPmsILLt5t+ICxKRIrDUUqLyU6vk7m+QRKzM2zpJM3CbBnV4UFY9jrfl4wkmA\r\n6GeZg4fOdzGBHw+aDR4JyTPofo3EuXOOd1Q=\r\n=2tN1\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">=6.0"},"gitHead":"6fcb7079c2a7673f3682f590df07417b1f4991fe","scripts":{"test":"mocha test","pretest":"eslint ."},"_npmUser":{"name":"anonymous","email":"xmilia.hermit@gmail.com"},"deprecated":"The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.","repository":{"url":"git+https://github.com/patriksimek/vm2.git","type":"git"},"_npmVersion":"8.1.4","description":"vm2 is a sandbox that can run untrusted code with whitelisted Node's built-in modules. Securely!","directories":{},"sideEffects":false,"_nodeVersion":"17.2.0","dependencies":{"acorn":"^8.7.0","acorn-walk":"^8.2.0"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^6.2.2","eslint":"^5.16.0","eslint-config-integromat":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/vm2_3.9.10_1657024915749_0.6160059604916881","host":"s3://npm-registry-packages"}},"3.9.11":{"name":"vm2","version":"3.9.11","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"license":"MIT","_id":"vm2@3.9.11","maintainers":[{"name":"anonymous","email":"patrik@patriksimek.cz"},{"name":"anonymous","email":"orta.therox@gmail.com"},{"name":"anonymous","email":"xmilia.hermit@gmail.com"}],"homepage":"https://github.com/patriksimek/vm2#readme","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"bin/vm2"},"dist":{"shasum":"a880f510a606481719ec3f9803b940c5805a06fe","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-3.9.11.tgz","fileCount":22,"integrity":"sha512-PFG8iJRSjvvBdisowQ7iVF580DXb1uCIiGaXgm7tynMR1uTBlv7UJlB1zdv5KJ+Tmq1f0Upnj3fayoEOPpCBKg==","signatures":[{"sig":"MEQCIHWlQz/8evc/1hpG9TidWf3jA5zeFqJlitLMnpHAzXTMAiAxIu6F3Lus6pa/Dm0ryvDaMDqNqpu4/fKl/DgT1cDhMg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":207628,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjC3VAACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr75BAAgUZLkjz95UYun6G1ZYiBGq1OAvCZ0TROrbWjZf8HV5A3yxWM\r\ndRC6T0622JnQZQ4J5Ctfi+XDh85rM6KdlqxH40Zs41XEMGHVWKUpcf0VWmpD\r\nTRjdbMFEt4LJEWSzREXAic21fl+sp3Tx5aMH2jmjnbc1POgsN6KkD2X2xs3T\r\nxVqyQ0ULii/80ZYy8imlJINRebJDacos6X69DeutuQoZ5Pojua++oip3qvp3\r\naYAcU3tfsNUwphNOXNZ2p4hc0fafA6eqn72q8pSFpcxTPj1PhsuavkQxQrTU\r\naVuHYhOnblptyWrn9sPCZ+lbvv4ldM9N7VuIIoQQ0XcV/f8MgEjxTvVAXuJT\r\npjUyZRAw2M8zRXugbMSvfs1U5hgEDTbGBtRCZkoXLpgeRWxy0sXLW6Vca5Sy\r\n0fAETjWNNIOmoVYuMoIoWdNqZbcmA6Wfl9ixUzPeO+qSUYkG2LKXXs6Zh/9O\r\nV/EkuC0T9UrDsqL3m0TrTGa4UF6Gc2kkUa3SRvOo8GV/2speRzHXKU/zX1LT\r\nfz25KHtddReLJcD/KbYmNnuWJhxu334Nhr9EZr6eZjlooG0cQyXRlZOReKsO\r\nYKme+iaGdwwT/X21pVwlsoJGc8ALcu4q4PgYe8AkF/JXI2gvR8XGf0qheFoK\r\nS4YNYSn6dhDyFrSWBsFh3gyN6Obzhf9JXpM=\r\n=6QoO\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">=6.0"},"gitHead":"392f126b18d5f6e1ea9300a2176707fc852da863","scripts":{"test":"mocha test","pretest":"eslint ."},"_npmUser":{"name":"anonymous","email":"xmilia.hermit@gmail.com"},"deprecated":"The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.","repository":{"url":"git+https://github.com/patriksimek/vm2.git","type":"git"},"_npmVersion":"8.18.0","description":"vm2 is a sandbox that can run untrusted code with whitelisted Node's built-in modules. Securely!","directories":{},"sideEffects":false,"_nodeVersion":"17.2.0","dependencies":{"acorn":"^8.7.0","acorn-walk":"^8.2.0"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^6.2.2","eslint":"^5.16.0","eslint-config-integromat":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/vm2_3.9.11_1661695296424_0.3093861195696668","host":"s3://npm-registry-packages"}},"3.9.12":{"name":"vm2","version":"3.9.12","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"license":"MIT","_id":"vm2@3.9.12","maintainers":[{"name":"anonymous","email":"patrik@patriksimek.cz"},{"name":"anonymous","email":"orta.therox@gmail.com"},{"name":"anonymous","email":"xmilia.hermit@gmail.com"}],"homepage":"https://github.com/patriksimek/vm2#readme","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"bin/vm2"},"dist":{"shasum":"9bfa6d913a8b467861524e5a11c3b038cc967ec4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-3.9.12.tgz","fileCount":23,"integrity":"sha512-OMmRsKh1gmdosFzuqmj6O43hqIStqXA24YbwjtUTO0TkOBP8yLNHLplbr4odnAzEcMnm9lt2r3R8kTivn8urMg==","signatures":[{"sig":"MEYCIQDSW/8eMrpN2upT++dyvSYyZOhQ8h64dU8ba3L4Br4vKgIhANxHW+gpHSdPNyE1kSgQMs4xqlcBZfprovFqhQFmZlgf","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":211310,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjhiVhACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqBhg/+L5kGDaXTXox9EDN6QzLgvpmvuMLU8B0SlfG88sH5b8WlB6Hj\r\nu20JHzk2IS20ko0TvcfueKrCSzBFc4ZNr9OtNMW+RirDKHL3+sHUd7mb1Zvd\r\nRADCzmgQvbClRkBq83LszrCPZMz3AIjz1K/2xdIrarzXtM5YmZTKjKTYy2os\r\nYeF0xwCrX5Mxg8QhzRbTzq0Xp8iQoF0nU3wV8vtiKSnZ1nF97K1qHZ31D1Wi\r\nfDWli09WqCrnxbZ2bTk63TiTd74Oh7yhDjWWfQmfhNz1i3HwMRkG7wc4w91/\r\nIcQRBtl95KzOpMBj43DDBaxJ2z7EWabebwbfZHfcBEpthNBIFv5pOLhLNB7c\r\nBSD5MKOHITga4WXIzmLO6EUnPQEa651+4ZQ2qfWRTqLcBpHZKDingZ38EUaN\r\nBIUDjbldVNH8l/OCvuhh1lUAP7JLYl3eR9g61OVxuURg+nnDG2/1IQps/RrJ\r\nOFrtPuZm2dD8oltEYjSMewsbrPIq4aBeCem0dkO5nPikvUKQUNsvaSSQSaC0\r\nyo7/E05iUZVKBjQvqJ7u4wHw4CGCjGYfdIth62g1/kCxrGumwSZbuuFLkCcT\r\nmUgPpwzMrubCgXh2I92BoprUlsvAYG6OuEjqRF5EM87b455FeI8mFAy2Ii5S\r\nBBJpTfYNMIRIbfMzPN5YCH/Lse5Y16evL2w=\r\n=t7Do\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">=6.0"},"gitHead":"4aa36051c1dcc4c2d7fe671261dd3798a6b56329","scripts":{"test":"mocha test","pretest":"eslint ."},"_npmUser":{"name":"anonymous","email":"xmilia.hermit@gmail.com"},"deprecated":"The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.","repository":{"url":"git+https://github.com/patriksimek/vm2.git","type":"git"},"_npmVersion":"8.18.0","description":"vm2 is a sandbox that can run untrusted code with whitelisted Node's built-in modules. Securely!","directories":{},"sideEffects":false,"_nodeVersion":"17.2.0","dependencies":{"acorn":"^8.7.0","acorn-walk":"^8.2.0"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^6.2.2","eslint":"^5.16.0","eslint-config-integromat":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/vm2_3.9.12_1669735776803_0.3080293955167459","host":"s3://npm-registry-packages"}},"3.9.13":{"name":"vm2","version":"3.9.13","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"license":"MIT","_id":"vm2@3.9.13","maintainers":[{"name":"anonymous","email":"patrik@patriksimek.cz"},{"name":"anonymous","email":"orta.therox@gmail.com"},{"name":"anonymous","email":"xmilia.hermit@gmail.com"}],"homepage":"https://github.com/patriksimek/vm2#readme","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"bin/vm2"},"dist":{"shasum":"774a1a3d73b9b90b1aa45bcc5f25e349f2eef649","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-3.9.13.tgz","fileCount":23,"integrity":"sha512-0rvxpB8P8Shm4wX2EKOiMp7H2zq+HUE/UwodY0pCZXs9IffIKZq6vUti5OgkVCTakKo9e/fgO4X1fkwfjWxE3Q==","signatures":[{"sig":"MEUCIQCNsf2NMZ9jkgfdilU+spY1qrWmFUBiVthIcCx/iTpLLQIgTbqx0oYIoJDheuUzbBUaWgEJcIxsADoqCrquTKT7hnU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":211837,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjkiVdACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrG0w//S9QdpYD2MpQ3dT41MAJ0VHO2MKqAq8tjRPOpoYdAiX2ghc59\r\n6Xb+KZdXTC4tjgFJrHU8gC3kOpaohAALuROF35Rh84Y8zzMT//SPf/ilJVcS\r\n1FsX8+O6ECAsZkIUt61oPZ8/MIPHG2lFTP5UjRQkzQ65Nc7lNHXlKuppnHmd\r\nDx0FAqUbJqkTJNdDz/xZXPz/7b0UV7U5znuAoxI0KwWeGb7hUXk34q0dUswe\r\nh96aHIWFACrxxKa893hVHpY0zAyeZsYI6gAGsEuMFOVcDxKffxu1k0SCOtbe\r\njbGiDW5PWyQpaVQu4XNWrGmKAF+17NfVjjVz3ExCnB0KlZYiZJW6kAkgNV5A\r\nIngNgdRYFL/Yn86NY+UwkqZlS1M/J2pOAOw3bmpkDOov37aKKjUxCQUKzAIw\r\nsjtP0l6TgBRv8BcnE27H3InvedU8Eo5gCKz2Lloy49ZtONja2bjmEKgxpIGL\r\nfV1is/xn47f64ckX3TFeifrg19B69j5NmhktguubosgcVS2KlPx7ouS4zyi4\r\nZ9L80rNXpCLH4+Nej4cZZ8uaoUKhduCtzc1L6poQFcwA1/UX/9IPHrhqcjb6\r\nRDbZFW88jA3S5kh4G3ECPF+8BUUOhSOicu4h/ttKqOQYGpWOs7EriqJTqJDq\r\nFV5i4zC2h9KvWPH9y00JAOA3wXPlFiP3fcs=\r\n=qPzK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">=6.0"},"gitHead":"d4bcc2189e2e05efcd82e09172ba41c708950012","scripts":{"test":"mocha test","pretest":"eslint ."},"_npmUser":{"name":"anonymous","email":"xmilia.hermit@gmail.com"},"deprecated":"The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.","repository":{"url":"git+https://github.com/patriksimek/vm2.git","type":"git"},"_npmVersion":"8.18.0","description":"vm2 is a sandbox that can run untrusted code with whitelisted Node's built-in modules. Securely!","directories":{},"sideEffects":false,"_nodeVersion":"17.2.0","dependencies":{"acorn":"^8.7.0","acorn-walk":"^8.2.0"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^6.2.2","eslint":"^5.16.0","eslint-config-integromat":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/vm2_3.9.13_1670522204885_0.8739972082882876","host":"s3://npm-registry-packages"}},"3.9.14":{"name":"vm2","version":"3.9.14","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"license":"MIT","_id":"vm2@3.9.14","maintainers":[{"name":"anonymous","email":"patrik@patriksimek.cz"},{"name":"anonymous","email":"orta.therox@gmail.com"},{"name":"anonymous","email":"xmilia.hermit@gmail.com"}],"homepage":"https://github.com/patriksimek/vm2#readme","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"bin/vm2"},"dist":{"shasum":"964042b474cf1e6e4f475a39144773cdb9deb734","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-3.9.14.tgz","fileCount":23,"integrity":"sha512-HgvPHYHeQy8+QhzlFryvSteA4uQLBCOub02mgqdR+0bN/akRZ48TGB1v0aCv7ksyc0HXx16AZtMHKS38alc6TA==","signatures":[{"sig":"MEYCIQCy5g9Qw1YSQGTiN3EoPcWByGMtlIV/8hdSGU8LDE8hpQIhANFl9J+DmIY1BfwKG/GaQ9StuMHmFCrHqjx1iOJZqIJg","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":212296,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj4BOZACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoeHA/8C+xtmcPYLjMttiFiyVyiiwjkQXFhpLlRyb1ADRoM8jIwkirf\r\n8gsmEBAwHHLa+5ITW679QcQwZWlTfYtEHzlXwfR1EsvgqPlrMh3BoEDwM36f\r\nR0Maq41s0yonvWXJDOYSk+D/XVmiF32caD5jvStf1ZpI2suC+PUi0v8ZXVx+\r\n1cJlrO9r3G0UDS0u4izN3MfFWxJwLifPVF4gy2tK9TJdmQfMUy0+y1tCKetI\r\noZSnf4gMlqNPAg4EQ9IAv5u/pBYohVyuVBjYGiQmajcg6jeoKBqBpDJ6ZTsW\r\nSKIozate/sJw9eY8q3ZBxEEbVLVxNfZSJ+tQN+Lu/erMVKczDpjCOmmgh5HH\r\nTguawOIcAHuTuJObrAgfEZT5FpZjhGhKyXcpfIUWKwuR5/o7uvXz7c9SlHdt\r\nk4iTWRmBoOqBIuegvLnm/aHB6JTDL49vSmXojBiumHf9Odzw2NyJIUY7tNU6\r\nsTgPK8arooT+iZQwY6WX3V//RCjcgQkaAXxW+tEzqbVlOPZ6ABCOyu6dMufv\r\nDzOclDo3xwQ4v+Ni0pmkSVsHEM6m8qGdDg59iezYWLYaKG4G+Y1VHYU4z713\r\nYcN9h9JGb6FTlYqKFHVvFSThhla2ydWam2MPW2MdbN0/CuuN58VYoJSqqzNF\r\nYgY8WftgUuG+c5hdgTDbTOQZ0bvkOAUrjwE=\r\n=CrWu\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">=6.0"},"gitHead":"e541782b7ff709c07676d07d982517d0591e5774","scripts":{"test":"mocha test","pretest":"eslint ."},"_npmUser":{"name":"anonymous","email":"xmilia.hermit@gmail.com"},"deprecated":"The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.","repository":{"url":"git+https://github.com/patriksimek/vm2.git","type":"git"},"_npmVersion":"8.18.0","description":"vm2 is a sandbox that can run untrusted code with whitelisted Node's built-in modules. Securely!","directories":{},"sideEffects":false,"_nodeVersion":"17.2.0","dependencies":{"acorn":"^8.7.0","acorn-walk":"^8.2.0"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^6.2.2","eslint":"^5.16.0","eslint-config-integromat":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/vm2_3.9.14_1675629465522_0.08263032702796491","host":"s3://npm-registry-packages"}},"3.9.15":{"name":"vm2","version":"3.9.15","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"license":"MIT","_id":"vm2@3.9.15","maintainers":[{"name":"anonymous","email":"patrik@patriksimek.cz"},{"name":"anonymous","email":"orta.therox@gmail.com"},{"name":"anonymous","email":"xmilia.hermit@gmail.com"}],"homepage":"https://github.com/patriksimek/vm2#readme","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"bin/vm2"},"dist":{"shasum":"c544e6a9bc31e4e40d2e5f532342cf799ea56a6e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-3.9.15.tgz","fileCount":23,"integrity":"sha512-XqNqknHGw2avJo13gbIwLNZUumvrSHc9mLqoadFZTpo3KaNEJoe1I0lqTFhRXmXD7WkLyG01aaraXdXT0pa4ag==","signatures":[{"sig":"MEQCIHa59a2IclJYFMwi2NM3xNOgXZJ9slGRGdDo2sZujM0mAiBVc22+cvwFJmsLQIso5xjmMhlUESpsl1GT4vlcVx3GDg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":212842,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkLxI6ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrLNQ//QOIMwV9JwTVRzpVv5w0EFigEPXOitYUQOZauBG6Jve3mVagu\r\nruOqx5oM2JB6hNiP+qkr88QxYvpYyn+7KVuqXfXPfeyqCzG0deBA3wifoiNO\r\nngQNNESA/uxZDjX3DqFvo7OcR9jA4rnkv5vFsIOpMVPYXbRfUWYFySN8dh8m\r\nEpOWrtwCDrENyugBzoyhCKiaEbVMVv6entOb5rgxRC4Ip6Lpkn41ULW6eM49\r\n8YFcgRh5/+EyRkSX5ZBtjV61J02iEdxQOfKTFK6Itdhv33bPjP7gzuodKFHl\r\n7mnshBIYXGjtLp4exayD/4rFP6HedW6XUv1Strfk/yzS4Q1b1CRjVwjIArcF\r\nJ3Fl5oLOfDxvRvBok7XT2DLrox619ark5+EJMyPT4qTM95mT1lqDPS/6vMXc\r\ns/mTHh/R2yCcTLZ2wlvMHt/CgObZm3U/tTc4VNwNRFWEeL8hUrVGmvqs69G/\r\nasaE/ER0zzlJxAaDoICykoVMTAHWHBomdg5PKvY6pV5bdU8lcnbLrB9TK55x\r\nmqeVOsGBqNWh+wbIwikYvWIM7U5CHI+kKOpfcHsEgnq0JJUbvMckvU38WI7p\r\n8RmRHFOz88G1VbjT1pFJRO2TpSF1jSlHnxC54iTt2Q7R61nJd5MQcnQaGslV\r\nmZDr7WcxnEexHSwd29y2iSDZS4UC8phGNKk=\r\n=3FGW\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">=6.0"},"gitHead":"115d1644b7308a5570cba58ec461ae61b96a583c","scripts":{"test":"mocha test","pretest":"eslint ."},"_npmUser":{"name":"anonymous","email":"xmilia.hermit@gmail.com"},"deprecated":"The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.","repository":{"url":"git+https://github.com/patriksimek/vm2.git","type":"git"},"_npmVersion":"8.18.0","description":"vm2 is a sandbox that can run untrusted code with whitelisted Node's built-in modules. Securely!","directories":{},"sideEffects":false,"_nodeVersion":"18.15.0","dependencies":{"acorn":"^8.7.0","acorn-walk":"^8.2.0"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^6.2.2","eslint":"^5.16.0","eslint-config-integromat":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/vm2_3.9.15_1680806458646_0.42136384008817207","host":"s3://npm-registry-packages"}},"3.9.16":{"name":"vm2","version":"3.9.16","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"license":"MIT","_id":"vm2@3.9.16","maintainers":[{"name":"anonymous","email":"patrik@patriksimek.cz"},{"name":"anonymous","email":"orta.therox@gmail.com"},{"name":"anonymous","email":"xmilia.hermit@gmail.com"}],"homepage":"https://github.com/patriksimek/vm2#readme","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"bin/vm2"},"dist":{"shasum":"0fbc2a265f7bf8b837cea6f4a908f88a3f93b8e6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-3.9.16.tgz","fileCount":23,"integrity":"sha512-3T9LscojNTxdOyG+e8gFeyBXkMlOBYDoF6dqZbj+MPVHi9x10UfiTAJIobuchRCp3QvC+inybTbMJIUrLsig0w==","signatures":[{"sig":"MEUCIGhyr+HX0jJrnIXHD94K//ElzgzGHJpFyIyhDW0sx3X7AiEAmZSV2io3Kl6Z6m5+he8ZOrkuvePp7xTTWsOjHkIDLW0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":212987,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkNSD+ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrfFhAAmdyfEq586gbEfU5M+rQWCGJoLbVIBcBWDRC8tEO2xruGHuRl\r\ng5EJ/5w8RZF//fs4OWjVjV0WV0owAgovrbCaZoZxDSLUT0005prGVx1apHJ4\r\na5x5jAWyfGxsBd0j2khneJyv7eqK1whG4IsDgG7hk094hH4RF9U2bGXK9vGb\r\n5NJBSBpnt8RkFaYKzK80RqZRyb4rTXnmAKtUFV6a4E5UEtjvhT+ZSm/kh0hB\r\nDEbkO7e02anZXDUOZhAG1Z6sGLxU3YsRCScHwVeGHoa9AA7UbbJZ98dJYk6s\r\n+QUZx0KXhdI72AKfCeLGei7eM4StwWYWUIDqS1fRgoIM/UjtPZ3Tn9qJk08b\r\n5UqTMcluiunarZXvgOdw+xtdNl7Fs6DiRFGofuH8o3Y0CBSco6FDlUlKKsxW\r\nJw+d2Hu+39WZ/AfXpXxVOXer8w4IoW5ehSFz90vqjSlAtOwsWHMrxyudpEEz\r\nmiZL8mPJTJx6XSi3Y/gTYy289niJd/TUMYfEmwdm2NMdzfwV/atQ9r4aFa0b\r\nyUFHxOBsLi9iQyp1pwlVwWi8fReqMENIZKbjKoUXtNUqrd6Q/UXd8G4XubTT\r\nAbAnPej/4Kh4s7v/Scf/bh67+fIpNmRV1j9+rXGwo1HLS1g1jdlACHvaX+PD\r\noMHRSgl8mpEJfI9IIh98Y0XkLvfwajqTDxo=\r\n=DsUl\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">=6.0"},"gitHead":"24c724daa7c09f003e556d7cd1c7a8381cb985d7","scripts":{"test":"mocha test","pretest":"eslint ."},"_npmUser":{"name":"anonymous","email":"xmilia.hermit@gmail.com"},"deprecated":"The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.","repository":{"url":"git+https://github.com/patriksimek/vm2.git","type":"git"},"_npmVersion":"8.18.0","description":"vm2 is a sandbox that can run untrusted code with whitelisted Node's built-in modules. Securely!","directories":{},"sideEffects":false,"_nodeVersion":"18.15.0","dependencies":{"acorn":"^8.7.0","acorn-walk":"^8.2.0"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^6.2.2","eslint":"^5.16.0","eslint-config-integromat":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/vm2_3.9.16_1681203453890_0.5341325804135593","host":"s3://npm-registry-packages"}},"3.9.17":{"name":"vm2","version":"3.9.17","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"license":"MIT","_id":"vm2@3.9.17","maintainers":[{"name":"anonymous","email":"patrik@patriksimek.cz"},{"name":"anonymous","email":"orta.therox@gmail.com"},{"name":"anonymous","email":"xmilia.hermit@gmail.com"}],"homepage":"https://github.com/patriksimek/vm2#readme","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"bin/vm2"},"dist":{"shasum":"251b165ff8a0e034942b5181057305e39570aeab","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-3.9.17.tgz","fileCount":23,"integrity":"sha512-AqwtCnZ/ERcX+AVj9vUsphY56YANXxRuqMb7GsDtAr0m0PcQX3u0Aj3KWiXM0YAHy7i6JEeHrwOnwXbGYgRpAw==","signatures":[{"sig":"MEYCIQDaTRMrD3tNNC92c3rqddrSCA9ZY27F66GKp4cfB8D9+wIhAIFCWwqx0nJPZL6yrpMkWFRhcymE9kPyaSQU0MQ9JShE","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":213119,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkPV/4ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoOiQ//dM2P5eaMMvn/6bXAXjwaalm0T4X2JnmvC3RXQ1dEjOukFB+/\r\niq3SST3zPFdD09xUorFydJyKaTXqSmoTHJx8En2NOSaEY77MRU0gKZa/Eg6T\r\n7ac6BPK3ygYBjp66GkzzOQE+0eTqRLVChNTaBNTQ1UmMP7VNRbRh7MSu8taE\r\n6Tzio15H7GATYS6R2ywDXmxAkWWVlI2tGEbJFxYhJ7CPo0h1ovPkOPjdiKXL\r\nEzj4YUbiGOChbqJzQmfyzSIILaUVORJVqheY77Ud7oNkdV7F/FUF15iQ3SZj\r\nxT8oUAIfUfpc7pOm3QUEh62pvs4tjDZVm6+vy9i9ACxd8Pt0kDHQAiIghh7i\r\nyShA0GJ+S/R7SyP1GmNpA2TcwEUXZnzCpvX1LaNY5bfPMZApFgFjLft3qqca\r\n4ebHs3f7QbLDJGXp5whwiIT+2XXxjmprekKo9Zd1eLOUlntbx0AXbhXmzXjq\r\nECCW4us45V+otC+kYLSZLb8yumwvJ9+MzAnBNrNlsjjNbTigMyLrzA64dYcO\r\ndmFpRB5HoMaXNt0E6MYUZdf+7ODKOq8kenbOnlqYKvX5gI8roL/0EzJDgdFM\r\ntrRhAlLRUktnPU2b8P863lWG35NdGxS0mDthnBQ9aG/NG4Q9emWdW44/yiL/\r\nvaRgXH/NecUhXiEOqvjLtmUdD5KIVsyiuAM=\r\n=ZOGQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">=6.0"},"gitHead":"4f63dc23fecabc79ee1501fde6e9e83c524d6466","scripts":{"test":"mocha test","pretest":"eslint ."},"_npmUser":{"name":"anonymous","email":"xmilia.hermit@gmail.com"},"deprecated":"The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.","repository":{"url":"git+https://github.com/patriksimek/vm2.git","type":"git"},"_npmVersion":"8.18.0","description":"vm2 is a sandbox that can run untrusted code with whitelisted Node's built-in modules. Securely!","directories":{},"sideEffects":false,"_nodeVersion":"18.15.0","dependencies":{"acorn":"^8.7.0","acorn-walk":"^8.2.0"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^6.2.2","eslint":"^5.16.0","eslint-config-integromat":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/vm2_3.9.17_1681743864551_0.10887622441591782","host":"s3://npm-registry-packages"}},"3.9.18":{"name":"vm2","version":"3.9.18","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"license":"MIT","_id":"vm2@3.9.18","maintainers":[{"name":"anonymous","email":"patrik@patriksimek.cz"},{"name":"anonymous","email":"orta.therox@gmail.com"},{"name":"anonymous","email":"xmilia.hermit@gmail.com"}],"homepage":"https://github.com/patriksimek/vm2#readme","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"bin/vm2"},"dist":{"shasum":"d919848bee191a0410c5cc1c5aac58adfd03ce9a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-3.9.18.tgz","fileCount":24,"integrity":"sha512-iM7PchOElv6Uv6Q+0Hq7dcgDtWWT6SizYqVcvol+1WQc+E9HlgTCnPozbQNSP3yDV9oXHQOEQu530w2q/BCVZg==","signatures":[{"sig":"MEYCIQCGPPiD8zKrkY0EMFrj+tuReothYnjqs3jmsyTwpN75YAIhAPa/S2aS9Cc8HubWk+pOubZNcCLNkcJrgvTwSOG5mil5","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":221272},"main":"index.js","types":"index.d.ts","engines":{"node":">=6.0"},"gitHead":"2f446e5d19e6539b5164b45b1f8bd4ded4dfc085","scripts":{"test":"mocha test","pretest":"eslint ."},"_npmUser":{"name":"anonymous","email":"xmilia.hermit@gmail.com"},"deprecated":"The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.","repository":{"url":"git+https://github.com/patriksimek/vm2.git","type":"git"},"_npmVersion":"8.18.0","description":"vm2 is a sandbox that can run untrusted code with whitelisted Node's built-in modules. Securely!","directories":{},"sideEffects":false,"_nodeVersion":"18.15.0","dependencies":{"acorn":"^8.7.0","acorn-walk":"^8.2.0"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^6.2.2","eslint":"^5.16.0","eslint-config-integromat":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/vm2_3.9.18_1684162349356_0.904960177263971","host":"s3://npm-registry-packages"}},"3.9.19":{"name":"vm2","version":"3.9.19","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"license":"MIT","_id":"vm2@3.9.19","maintainers":[{"name":"anonymous","email":"patrik@patriksimek.cz"},{"name":"anonymous","email":"orta.therox@gmail.com"},{"name":"anonymous","email":"xmilia.hermit@gmail.com"}],"homepage":"https://github.com/patriksimek/vm2#readme","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"bin/vm2"},"dist":{"shasum":"be1e1d7a106122c6c492b4d51c2e8b93d3ed6a4a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-3.9.19.tgz","fileCount":24,"integrity":"sha512-J637XF0DHDMV57R6JyVsTak7nIL8gy5KH4r1HiwWLf/4GBbb5MKL5y7LpmF4A8E2nR6XmzpmMFQ7V7ppPTmUQg==","signatures":[{"sig":"MEUCIQCdcuPd5+YT9+H2q0BC/2lVBZuAiLZMWo5TvgrxcjcwEQIgYG4EVnijj9A4S5YDe1zIgCMA+GuS9sWih5KbsQsGYEY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":220922},"main":"index.js","types":"index.d.ts","engines":{"node":">=6.0"},"gitHead":"1663f231ec02db473ed5b743e3b91b8a2ffc7982","scripts":{"test":"mocha test","pretest":"eslint ."},"_npmUser":{"name":"anonymous","email":"xmilia.hermit@gmail.com"},"deprecated":"The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.","repository":{"url":"git+https://github.com/patriksimek/vm2.git","type":"git"},"_npmVersion":"8.18.0","description":"vm2 is a sandbox that can run untrusted code with whitelisted Node's built-in modules. Securely!","directories":{},"sideEffects":false,"_nodeVersion":"18.15.0","dependencies":{"acorn":"^8.7.0","acorn-walk":"^8.2.0"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^6.2.2","eslint":"^5.16.0","eslint-config-integromat":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/vm2_3.9.19_1684214952953_0.6244357439239749","host":"s3://npm-registry-packages"}},"3.10.0":{"name":"vm2","version":"3.10.0","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"license":"MIT","_id":"vm2@3.10.0","maintainers":[{"name":"anonymous","email":"p.simek@make.com"},{"name":"anonymous","email":"orta.therox@gmail.com"},{"name":"anonymous","email":"xmilia.hermit@gmail.com"}],"homepage":"https://github.com/patriksimek/vm2#readme","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"bin/vm2"},"dist":{"shasum":"bd241fbf37fed0b7d0050e40ad08d7be6ba33d57","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-3.10.0.tgz","fileCount":21,"integrity":"sha512-3ggF4Bs0cw4M7Rxn19/Cv3nJi04xrgHwt4uLto+zkcZocaKwP/nKP9wPx6ggN2X0DSXxOOIc63BV1jvES19wXQ==","signatures":[{"sig":"MEUCIQClSLMEzsBZvv8bCmiEvBzXAHdyToK02zzkuk6geQwswwIgYv0bkolD7A0CzgzIJ/9P/IHoeqeX5aRw6lJlwEXiAz4=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":216737},"main":"index.js","types":"index.d.ts","engines":{"node":">=6.0"},"gitHead":"b5168fa25f1f83c1961811029fa3679f0b90bc14","scripts":{"lint":"eslint .","test":"mocha test --ignore test/compilers.js","test:compilers":"mocha test/compilers.js"},"_npmUser":{"name":"anonymous","email":"p.simek@make.com"},"repository":{"url":"git+https://github.com/patriksimek/vm2.git","type":"git"},"_npmVersion":"10.8.2","description":"vm2 is a sandbox that can run untrusted code with whitelisted Node's built-in modules.","directories":{},"sideEffects":false,"_nodeVersion":"20.19.5","dependencies":{"acorn":"^8.14.1","acorn-walk":"^8.3.4"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^11.1.0","eslint":"^9.38.0"},"_npmOperationalInternal":{"tmp":"tmp/vm2_3.10.0_1761335213300_0.22433185140083967","host":"s3://npm-registry-packages-npm-production"}},"3.10.1":{"name":"vm2","version":"3.10.1","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"license":"MIT","_id":"vm2@3.10.1","maintainers":[{"name":"anonymous","email":"p.simek@make.com"}],"homepage":"https://github.com/patriksimek/vm2#readme","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"bin/vm2"},"dist":{"shasum":"f06e263a21f4802bf6dc2bbacf8d3b702d999d67","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-3.10.1.tgz","fileCount":21,"integrity":"sha512-5VKPEiEzLPiIKxfHoGoafr1yL5PKeALbbwwYhiwyEgWmslnao7e1UxKGL93ekGGt45ETs+zFB0tTYLADzCWH8g==","signatures":[{"sig":"MEUCIEd8JwVzUUeOzyf6xq6CGscund5uLFtat3T9Z225rSbSAiEAjrWFWzjTOpJ8UARY8rESOIzzTCV25BZA1FsOiLwISHY=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/vm2@3.10.1","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":218418},"main":"index.js","types":"index.d.ts","engines":{"node":">=6.0"},"gitHead":"055b2f83eaa514deffa568ecfa92086a63d53fa0","scripts":{"lint":"eslint .","test":"mocha test --ignore test/compilers.js","test:compilers":"mocha test/compilers.js"},"_npmUser":{"name":"anonymous","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:a2667faa-22d9-42dd-ba59-c732681d0838"}},"repository":{"url":"git+https://github.com/patriksimek/vm2.git","type":"git"},"_npmVersion":"11.6.2","description":"vm2 is a sandbox that can run untrusted code with whitelisted Node's built-in modules.","directories":{},"sideEffects":false,"_nodeVersion":"24.12.0","dependencies":{"acorn":"^8.14.1","acorn-walk":"^8.3.4"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^11.1.0","eslint":"^9.38.0"},"_npmOperationalInternal":{"tmp":"tmp/vm2_3.10.1_1767990975343_0.30846293507035627","host":"s3://npm-registry-packages-npm-production"}},"3.10.2":{"name":"vm2","version":"3.10.2","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"license":"MIT","_id":"vm2@3.10.2","maintainers":[{"name":"anonymous","email":"p.simek@make.com"}],"homepage":"https://github.com/patriksimek/vm2#readme","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"bin/vm2"},"dist":{"shasum":"b41dbe9c928b03e8a83c9b0a973f60dc7c80c5be","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-3.10.2.tgz","fileCount":21,"integrity":"sha512-qTnbvpada8qlEEyIPFwhTcF5Ns+k83fVlOSE8XvAtHkhcQ+okMnbvryVQBfP/ExRT1CRsQpYusdATR+FBJfrnQ==","signatures":[{"sig":"MEUCIHrVVKUPBD3KoBwvFf08JDHI9crZVvAkSE5I/7X2C4pAAiEA95wDTV+g0aOSkKDAzbVdzKCGtscJkaoF1BiEomFBRKo=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/vm2@3.10.2","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":218426},"main":"index.js","types":"index.d.ts","engines":{"node":">=6.0"},"gitHead":"4b009c2d4b1131c01810c1205e641d614c322a29","scripts":{"lint":"eslint .","test":"mocha test --ignore test/compilers.js","test:compilers":"mocha test/compilers.js"},"_npmUser":{"name":"anonymous","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:a2667faa-22d9-42dd-ba59-c732681d0838"}},"repository":{"url":"git+https://github.com/patriksimek/vm2.git","type":"git"},"_npmVersion":"11.6.2","description":"vm2 is a sandbox that can run untrusted code with whitelisted Node's built-in modules.","directories":{},"sideEffects":false,"_nodeVersion":"24.12.0","dependencies":{"acorn":"^8.14.1","acorn-walk":"^8.3.4"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^11.1.0","eslint":"^9.38.0"},"_npmOperationalInternal":{"tmp":"tmp/vm2_3.10.2_1768661502066_0.6489415969560335","host":"s3://npm-registry-packages-npm-production"}},"3.10.3":{"name":"vm2","version":"3.10.3","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"license":"MIT","_id":"vm2@3.10.3","maintainers":[{"name":"anonymous","email":"p.simek@make.com"}],"homepage":"https://github.com/patriksimek/vm2#readme","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"bin/vm2"},"dist":{"shasum":"451e5d6e74bc4ec9c95d3a4b378bb9e174a682fa","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-3.10.3.tgz","fileCount":21,"integrity":"sha512-zJyUr2FPAj/jmnaHNPNX494wDvPzl3pnmmvxAqVJESQTd5wAju6n8nXiFVfCZXlCTRamR6N3lCJOdv6dM559mQ==","signatures":[{"sig":"MEYCIQDSTzPUYieRggGceksWU7tggkYFSQGu0rqbb+XOWGK/9AIhAKA07PUcrTDuF0mmj6YntZXKLlrOe2Oj52YsAmAxW+ou","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/vm2@3.10.3","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":226028},"main":"index.js","types":"index.d.ts","engines":{"node":">=6.0"},"gitHead":"a99a456b12c37bc3a419093b0aeaf35f36e21346","scripts":{"lint":"eslint .","test":"mocha test --ignore test/compilers.js","test:compilers":"mocha test/compilers.js"},"_npmUser":{"name":"anonymous","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:a2667faa-22d9-42dd-ba59-c732681d0838"}},"repository":{"url":"git+https://github.com/patriksimek/vm2.git","type":"git"},"_npmVersion":"11.6.2","description":"vm2 is a sandbox that can run untrusted code with whitelisted Node's built-in modules.","directories":{},"sideEffects":false,"_nodeVersion":"24.13.0","dependencies":{"acorn":"^8.14.1","acorn-walk":"^8.3.4"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^11.1.0","eslint":"^9.38.0"},"_npmOperationalInternal":{"tmp":"tmp/vm2_3.10.3_1769382569665_0.8088118768326995","host":"s3://npm-registry-packages-npm-production"}},"3.10.4":{"name":"vm2","version":"3.10.4","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"author":{"url":"https://patriksimek.cz","name":"Patrik Simek"},"license":"MIT","_id":"vm2@3.10.4","maintainers":[{"name":"anonymous","email":"p.simek@make.com"}],"homepage":"https://github.com/patriksimek/vm2#readme","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"bin":{"vm2":"bin/vm2"},"dist":{"shasum":"459862173e417cb335435699b604de8dfe2928b5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-3.10.4.tgz","fileCount":21,"integrity":"sha512-Gl6r7MN3mkawGurFdp467yDJQ7HdragK2QVVWFbOCd3LPJXJLE2xZFwLCNhp04MTkHruPqLIOs3pYbJQJw/1aA==","signatures":[{"sig":"MEUCIBxcHZfl0o/PlWpzN3mcrJZhY9Zbgq3qAov+0WXDEEqfAiEA32tFIfdAzM6rhKlFntTpWTIqV/fiWN6UEudTR2mi59A=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/vm2@3.10.4","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":232728},"main":"index.js","types":"index.d.ts","engines":{"node":">=6.0"},"gitHead":"7cf744506cd2ab3544103eb5a4e64408eaec4a87","scripts":{"lint":"eslint .","test":"mocha test --ignore test/compilers.js","test:compilers":"mocha test/compilers.js"},"_npmUser":{"name":"anonymous","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:a2667faa-22d9-42dd-ba59-c732681d0838"}},"repository":{"url":"git+https://github.com/patriksimek/vm2.git","type":"git"},"_npmVersion":"11.6.2","description":"vm2 is a sandbox that can run untrusted code with whitelisted Node's built-in modules.","directories":{},"sideEffects":false,"_nodeVersion":"24.13.0","dependencies":{"acorn":"^8.14.1","acorn-walk":"^8.3.4"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^11.1.0","eslint":"^9.38.0"},"_npmOperationalInternal":{"tmp":"tmp/vm2_3.10.4_1770245359849_0.3335074423295308","host":"s3://npm-registry-packages-npm-production"}},"3.10.5":{"author":{"name":"Patrik Simek","url":"https://patriksimek.cz"},"name":"vm2","description":"vm2 is a sandbox that can run untrusted code with whitelisted Node's built-in modules.","keywords":["sandbox","prison","jail","vm","alcatraz","contextify"],"version":"3.10.5","main":"index.js","sideEffects":false,"repository":{"type":"git","url":"git+https://github.com/patriksimek/vm2.git"},"license":"MIT","dependencies":{"acorn":"^8.15.0","acorn-walk":"^8.3.4"},"devDependencies":{"eslint":"^9.38.0","mocha":"^11.1.0"},"engines":{"node":">=6.0"},"scripts":{"test":"mocha test --ignore test/compilers.js","test:compilers":"mocha test/compilers.js","lint":"eslint ."},"bin":{"vm2":"bin/vm2"},"types":"index.d.ts","gitHead":"408fc855f1cc1bbc2985b029465ee0e732ada433","_id":"vm2@3.10.5","bugs":{"url":"https://github.com/patriksimek/vm2/issues"},"homepage":"https://github.com/patriksimek/vm2#readme","_nodeVersion":"24.13.0","_npmVersion":"11.6.2","dist":{"integrity":"sha512-3P/2QDccVFBcujfCOeP8vVNuGfuBJHEuvGR8eMmI10p/iwLL2UwF5PDaNaoOS2pRGQEDmJRyeEcc8kmm2Z59RA==","shasum":"cc79e75bc344805bc9796a28dc91baa388dc944f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/vm2/-/vm2-3.10.5.tgz","fileCount":21,"unpackedSize":244060,"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/vm2@3.10.5","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEQCIG8sLreoApqottCZAAoAJ8iNgO7XTKdBzDfST+iqtInOAiBqILwqlNQafnTlAGYgWJ/WD3CyvcI5U12IwURaggVWBA=="}]},"_npmUser":{"name":"anonymous","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:a2667faa-22d9-42dd-ba59-c732681d0838"}},"directories":{},"maintainers":[{"name":"anonymous","email":"p.simek@make.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/vm2_3.10.5_1771290906259_0.2264160300861051"},"_hasShrinkwrap":false}},"name":"vm2","time":{"created":"2014-01-14T12:17:34.402Z","modified":"2026-02-17T01:15:06.683Z","0.1.0":"2014-01-14T12:17:34.402Z","0.1.1":"2014-01-14T13:45:36.366Z","0.2.0":"2014-10-11T13:01:32.658Z","0.2.1":"2014-12-20T20:57:17.856Z","0.2.2":"2015-02-12T15:20:12.844Z","0.2.3":"2015-09-20T18:29:44.010Z","0.2.4":"2015-12-11T17:56:33.099Z","1.0.0":"2015-12-17T02:22:27.806Z","1.0.1":"2015-12-22T19:03:53.316Z","2.0.0":"2016-03-16T17:05:53.638Z","2.0.2":"2016-04-06T21:22:08.947Z","3.0.0":"2016-06-20T22:27:16.874Z","3.0.1":"2016-07-20T17:27:43.473Z","3.1.0":"2016-09-03T20:35:58.977Z","3.2.0":"2017-02-10T22:47:31.707Z","3.3.0":"2017-03-27T15:44:40.810Z","3.3.1":"2017-03-27T16:09:55.570Z","3.4.0":"2017-03-28T00:40:09.992Z","3.4.1":"2017-03-28T01:19:55.345Z","3.4.2":"2017-03-29T00:51:36.075Z","3.4.3":"2017-03-29T15:25:54.116Z","3.4.4":"2017-03-30T00:21:51.954Z","3.4.5":"2017-03-30T01:03:44.484Z","3.4.6":"2017-03-30T16:30:43.956Z","3.5.0":"2017-08-31T11:57:45.837Z","3.5.1":"2017-10-03T23:46:09.512Z","3.5.2":"2017-10-04T00:21:19.067Z","3.6.0":"2018-05-11T17:35:48.335Z","3.6.1":"2018-06-27T11:14:46.081Z","3.6.2":"2018-07-05T19:25:47.570Z","3.6.3":"2018-08-06T12:16:36.424Z","3.6.4":"2018-10-17T21:38:04.025Z","3.6.5":"2018-12-31T02:34:51.098Z","3.6.6":"2019-01-02T00:40:55.190Z","3.6.7":"2019-01-26T01:39:25.915Z","3.6.8":"2019-01-26T13:15:42.549Z","3.6.9":"2019-01-26T21:22:23.781Z","3.6.10":"2019-01-28T12:27:12.621Z","3.6.11":"2019-04-07T23:52:19.359Z","3.7.0":"2019-04-15T11:30:27.034Z","3.8.0":"2019-04-21T21:50:03.751Z","3.8.1":"2019-05-02T21:33:56.265Z","3.8.2":"2019-06-12T23:06:59.391Z","3.8.3":"2019-07-31T16:40:22.476Z","3.8.4":"2019-09-13T00:18:02.792Z","3.9.0":"2020-03-21T22:53:24.780Z","3.9.1":"2020-03-29T20:08:21.401Z","3.9.2":"2020-04-29T19:46:58.024Z","3.9.3":"2021-04-05T20:08:04.948Z","3.9.4":"2021-10-12T17:15:59.893Z","3.9.5":"2021-10-17T17:55:03.295Z","3.9.6":"2022-02-08T13:26:22.858Z","3.9.7":"2022-02-10T15:17:35.943Z","3.9.8":"2022-02-16T12:45:20.620Z","3.9.9":"2022-02-24T21:26:12.229Z","3.9.10":"2022-07-05T12:41:55.962Z","3.9.11":"2022-08-28T14:01:36.682Z","3.9.12":"2022-11-29T15:29:37.004Z","3.9.13":"2022-12-08T17:56:45.051Z","3.9.14":"2023-02-05T20:37:45.754Z","3.9.15":"2023-04-06T18:40:58.830Z","3.9.16":"2023-04-11T08:57:34.094Z","3.9.17":"2023-04-17T15:04:24.746Z","3.9.18":"2023-05-15T14:52:29.590Z","3.9.19":"2023-05-16T05:29:13.142Z","3.10.0":"2025-10-24T19:46:53.505Z","3.10.1":"2026-01-09T20:36:15.500Z","3.10.2":"2026-01-17T14:51:42.220Z","3.10.3":"2026-01-25T23:09:29.850Z","3.10.4":"2026-02-04T22:49:20.071Z","3.10.5":"2026-02-17T01:15:06.398Z"},"readmeFilename":"README.md","homepage":"https://github.com/patriksimek/vm2#readme"}