{
  "name": "sandybox",
  "version": "1.1.2",
  "description": "A tiny, experimental library to allow you to execute arbitrary JavaScript functions safely in a sandbox on the web.",
  "main": "dist/index.js",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "scripts": {
    "build": "tsc",
    "check": "npm run lint && npm run build && npm run typecheck && npm run test",
    "lint": "eslint '**/*.{ts,js}'",
    "format": "prettier --write .",
    "minify": "terser dist/index.js --compress --mangle --module -o dist/index.min.js",
    "prepublishOnly": "npm run minify",
    "size": "cat dist/index.min.js | gzip -9 | wc -c",
    "test": "testem ci",
    "test:dev": "testem dev",
    "typecheck": "tsc --noEmit",
    "preversion": "npm run check",
    "postversion": "git push && git push --tags && npm publish"
  },
  "author": "Trent Willis <trentmwillis@gmail.com>",
  "license": "MIT",
  "devDependencies": {
    "@typescript-eslint/eslint-plugin": "^4.4.1",
    "@typescript-eslint/parser": "^4.4.1",
    "eslint": "^7.11.0",
    "eslint-config-prettier": "^6.13.0",
    "eslint-plugin-prettier": "^3.1.4",
    "prettier": "^2.1.2",
    "qunit": "^2.11.3",
    "terser": "^5.3.5",
    "testem": "^3.2.0",
    "typescript": "^4.0.3"
  }
}
