Newer
Older
pixi.js / packages / unsafe-eval / package.json
@Ivan Popelyshev Ivan Popelyshev on 8 Mar 2019 981 bytes Introduces unsafe-eval and runner packages (#5463)
{
  "name": "@pixi/unsafe-eval",
  "version": "5.0.0-rc.2",
  "main": "lib/unsafe-eval.js",
  "module": "lib/unsafe-eval.es.js",
  "bundle": "dist/unsafe-eval.js",
  "bundleInput": "src/bundle.js",
  "bundleOutput": {
    "format": "umd"
  },
  "description": "Adds support for environments that disallow support of new Function",
  "author": "Matt Karl <matt@mattkarl.com>",
  "homepage": "http://pixijs.com/",
  "bugs": "https://github.com/pixijs/pixi.js/issues",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/pixijs/pixi.js.git"
  },
  "publishConfig": {
    "access": "public"
  },
  "files": [
    "lib/",
    "dist/"
  ],
  "scripts": {
    "build:min": "terser dist/unsafe-eval.js -c -m -o dist/unsafe-eval.min.js --source-map \"content='dist/unsafe-eval.js.map',includeSources=true,filename='dist/unsafe-eval.min.js.map',url='unsafe-eval.min.js.map'\" --comments \"/^!/\""
  },
  "devDependencies": {
    "terser": "^3.14.1"
  }
}