@takeshape/vm2
Version:
vm2 is a sandbox that can run untrusted code with whitelisted Node's built-in modules. Securely!
48 lines (47 loc) • 993 B
JSON
{
"author": {
"name": "Patrik Simek",
"url": "https://patriksimek.cz"
},
"files": [
"index.js",
"dist",
"bin"
],
"name": "@takeshape/vm2",
"description": "vm2 is a sandbox that can run untrusted code with whitelisted Node's built-in modules. Securely!",
"keywords": [
"sandbox",
"prison",
"jail",
"vm",
"alcatraz",
"contextify"
],
"version": "3.9.5",
"main": "index.js",
"repository": "github:takeshape/vm2",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-integromat": "^1.5.0",
"mocha": "^6.2.2",
"rimraf": "^3.0.2"
},
"engines": {
"node": ">=6.0"
},
"scripts": {
"pretest": "npm run clean && npm run build && npm run lint",
"test": "mocha test",
"clean": "rimraf dist",
"build": "node build.js",
"lint": "eslint .",
"prepublishOnly": "npm run test"
},
"bin": {
"vm2": "./bin/vm2"
},
"types": "index.d.ts"
}