https://github.com/mishoo/UglifyJS
Revision 885835a655b4c1b3a0a9cb0f78edaa6ac446a0e7 authored by Tal Ater on 02 September 2014, 20:30:25 UTC, committed by Tal Ater on 02 September 2014, 20:30:25 UTC
1 parent 4c64554
Raw File
Tip revision: 885835a655b4c1b3a0a9cb0f78edaa6ac446a0e7 authored by Tal Ater on 02 September 2014, 20:30:25 UTC
Compress conditional assignments where all possible outcomes are equivalant and condition has no side effects
Tip revision: 885835a
package.json
{
  "name": "uglify-js",
  "description": "JavaScript parser, mangler/compressor and beautifier toolkit",
    "homepage": "http://lisperator.net/uglifyjs",
    "main": "tools/node.js",
    "version": "2.4.15",
    "engines": { "node" : ">=0.4.0" },
    "maintainers": [{
        "name": "Mihai Bazon",
        "email": "mihai.bazon@gmail.com",
        "web": "http://lisperator.net/"
    }],
    "repository": {
        "type": "git",
        "url": "https://github.com/mishoo/UglifyJS2.git"
    },
    "dependencies": {
        "async"      : "~0.2.6",
        "source-map" : "0.1.34",
        "optimist": "~0.3.5",
        "uglify-to-browserify": "~1.0.0"
    },
    "devDependencies": {
        "acorn": "~0.6.0",
        "escodegen": "~1.3.3",
        "esfuzz": "~0.3.1",
        "estraverse": "~1.5.1"
    },
    "browserify": {
        "transform": [ "uglify-to-browserify" ]
    },
    "bin": {
        "uglifyjs" : "bin/uglifyjs"
    },
    "license": "BSD",
    "scripts": {"test": "node test/run-tests.js"}
}
back to top