Revision 85b527ba3d609e87b5b5f758b429ef371dc3e459 authored by Mihai Bazon on 02 September 2013, 16:36:16 UTC, committed by Mihai Bazon on 02 September 2013, 16:36:16 UTC
Simplifies handling of labels (their definition/references can be easily
figured out at parse time, no need to do it in `figure_out_scope`).
1 parent 1c6efda
Raw File
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.0",
    "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.7",
        "optimist"   : "~0.3.5",
        "uglify-to-browserify": "~1.0.0"
    },
    "browserify": {
        "transform": [ "uglify-to-browserify" ]
    },
    "bin": {
        "uglifyjs" : "bin/uglifyjs"
    },
    "scripts": {"test": "node test/run-tests.js"}
}
back to top