https://github.com/mishoo/UglifyJS
Revision 0a79496e0a2b0fb7739fc757e4e33d652694a6b5 authored by Alex Lam S.L on 26 April 2018, 07:02:17 UTC, committed by GitHub on 26 April 2018, 07:02:17 UTC
1 parent 9e87edf
Raw File
Tip revision: 0a79496e0a2b0fb7739fc757e4e33d652694a6b5 authored by Alex Lam S.L on 26 April 2018, 07:02:17 UTC
workaround stack overflow in ChakraCore (#3101)
Tip revision: 0a79496
package.json
{
  "name": "uglify-js",
  "description": "JavaScript parser, mangler/compressor and beautifier toolkit",
  "author": "Mihai Bazon <mihai.bazon@gmail.com> (http://lisperator.net/)",
  "license": "BSD-2-Clause",
  "version": "3.3.22",
  "engines": {
    "node": ">=0.8.0"
  },
  "maintainers": [
    "Alex Lam <alexlamsl@gmail.com>",
    "Mihai Bazon <mihai.bazon@gmail.com> (http://lisperator.net/)"
  ],
  "repository": "mishoo/UglifyJS2",
  "main": "tools/node.js",
  "bin": {
    "uglifyjs": "bin/uglifyjs"
  },
  "files": [
    "bin",
    "lib",
    "tools",
    "LICENSE"
  ],
  "dependencies": {
    "commander": "~2.15.0",
    "source-map": "~0.6.1"
  },
  "devDependencies": {
    "acorn": "~5.5.3",
    "mocha": "~3.5.1",
    "semver": "~5.5.0"
  },
  "scripts": {
    "test": "node test/run-tests.js"
  },
  "keywords": [
    "cli",
    "compress",
    "compressor",
    "ecma",
    "ecmascript",
    "es",
    "es5",
    "javascript",
    "js",
    "jsmin",
    "min",
    "minification",
    "minifier",
    "minify",
    "optimize",
    "optimizer",
    "pack",
    "packer",
    "parse",
    "parser",
    "uglifier",
    "uglify"
  ]
}
back to top