https://github.com/mishoo/UglifyJS
Revision 3a72deacab4d2f5fea3399233565c8a62267c783 authored by Mihai Bazon on 19 October 2012, 11:29:40 UTC, committed by Mihai Bazon on 19 October 2012, 11:29:40 UTC
Allow to specify sourceRoot in minify
2 parent s fc8314e + 11dffe9
Raw File
Tip revision: 3a72deacab4d2f5fea3399233565c8a62267c783 authored by Mihai Bazon on 19 October 2012, 11:29:40 UTC
Merge pull request #19 from SevInf/master
Tip revision: 3a72dea
package.json
{
    "name": "uglify-js2",
    "description": "JavaScript parser, mangler/compressor and beautifier toolkit",
    "homepage": "http://lisperator.net/uglifyjs",
    "main": "tools/node.js",
    "version": "2.1.1",
    "engines": { "node" : ">=0.4.0" },
    "maintainers": [{
        "name": "Mihai Bazon",
        "email": "mihai.bazon@gmail.com",
        "web": "http://lisperator.net/"
    }],
    "repositories": [{
        "type": "git",
        "url": "https://github.com/mishoo/UglifyJS2.git"
    }],
    "dependencies": {
        "source-map" : "*",
        "optimist"   : "*"
    },
    "bin": {
        "uglifyjs2" : "bin/uglifyjs2"
    },
    "scripts": {"test": "node test/run-tests.js"}
}
back to top