https://github.com/mishoo/UglifyJS
Revision dfc04e66770f463e1ae97547950e6b829aaeeeff authored by Mihai Bazon on 08 October 2012, 18:15:47 UTC, committed by Mihai Bazon on 08 October 2012, 18:15:59 UTC
1 parent 42ea3c9
Raw File
Tip revision: dfc04e66770f463e1ae97547950e6b829aaeeeff authored by Mihai Bazon on 08 October 2012, 18:15:47 UTC
add simple API wrapper: UglifyJS.minify
Tip revision: dfc04e6
package.json
{
    "name": "uglify-js2",
    "description": "JavaScript parser, mangler/compressor and beautifier toolkit",
    "homepage": "http://lisperator.net/uglifyjs",
    "main": "tools/node.js",
    "version": "2.0.0",
    "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