From 7a7675efa8da100a3924547c7a02ef5dee8d61f9 Mon Sep 17 00:00:00 2001 From: Pavol Bielik Date: Mon, 26 Jan 2015 17:12:47 +0100 Subject: [PATCH] update package.json with UnuglifyJS info --- package.json | 32 +++++++++++++------------------- 1 file changed, 13 insertions(+), 19 deletions(-) diff --git a/package.json b/package.json index 09f8ea6d..d2c31832 100644 --- a/package.json +++ b/package.json @@ -1,37 +1,31 @@ { - "name": "uglify-js", - "description": "JavaScript parser, mangler/compressor and beautifier toolkit", - "homepage": "http://lisperator.net/uglifyjs", + "name": "unuglify-js", + "description": "JavaScript tool that renames variables and parameters to names based on statistical model learnt from thousands of open source projects", + "homepage": "https://github.com/eth-srl/UnuglifyJS", "main": "tools/node.js", - "version": "2.4.16", + "version": "0.9.0", "engines": { "node" : ">=0.4.0" }, "maintainers": [{ - "name": "Mihai Bazon", - "email": "mihai.bazon@gmail.com", - "web": "http://lisperator.net/" + "name": "Pavol Bielik", + "email": "pavol.bielik@inf.ethz.ch", + "web": "http://www.srl.inf.ethz.ch/bielik" }], "repository": { "type": "git", - "url": "https://github.com/mishoo/UglifyJS2.git" + "url": "https://github.com/eth-srl/UnuglifyJS" }, "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", "colors": "~1.0.3" }, - "browserify": { - "transform": [ "uglify-to-browserify" ] + "devDependencies": { + "escodegen": "~1.3.3", + "esfuzz": "~0.3.1", + "estraverse": "~1.5.1" }, "bin": { - "uglifyjs" : "bin/uglifyjs" + "unuglifyjs" : "bin/unuglifyjs" }, "license": "BSD", "scripts": {"test": "node test/run-tests.js"}