package.json 824 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "author": {
  3. "name": "Patrik Simek",
  4. "url": "https://patriksimek.cz"
  5. },
  6. "name": "vm2",
  7. "description": "vm2 is a sandbox that can run untrusted code with whitelisted Node's built-in modules. Securely!",
  8. "keywords": [
  9. "sandbox",
  10. "prison",
  11. "jail",
  12. "vm",
  13. "alcatraz",
  14. "contextify"
  15. ],
  16. "version": "3.9.11",
  17. "main": "index.js",
  18. "sideEffects": false,
  19. "repository": "github:patriksimek/vm2",
  20. "license": "MIT",
  21. "dependencies": {
  22. "acorn": "^8.7.0",
  23. "acorn-walk": "^8.2.0"
  24. },
  25. "devDependencies": {
  26. "eslint": "^5.16.0",
  27. "eslint-config-integromat": "^1.5.0",
  28. "mocha": "^6.2.2"
  29. },
  30. "engines": {
  31. "node": ">=6.0"
  32. },
  33. "scripts": {
  34. "test": "mocha test",
  35. "pretest": "eslint ."
  36. },
  37. "bin": {
  38. "vm2": "./bin/vm2"
  39. },
  40. "types": "index.d.ts"
  41. }