https://github.com/mishoo/UglifyJS
Revision f16033aafdd7f88da6b53c58f86b8effd1fb2a3d authored by Ingvar Stepanyan on 08 August 2014, 11:54:34 UTC, committed by Richard van Velzen on 06 January 2015, 10:32:41 UTC
1 parent ae5366a
Raw File
Tip revision: f16033aafdd7f88da6b53c58f86b8effd1fb2a3d authored by Ingvar Stepanyan on 08 August 2014, 11:54:34 UTC
Location fix for Mozilla AST start token.
Tip revision: f16033a
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.16",
    "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",
        "yargs": "~1.3.3",
        "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