update package.json with UnuglifyJS info

This commit is contained in:
Pavol Bielik 2015-01-26 17:12:47 +01:00
parent 1ef640da8e
commit 7a7675efa8

View File

@ -1,37 +1,31 @@
{ {
"name": "uglify-js", "name": "unuglify-js",
"description": "JavaScript parser, mangler/compressor and beautifier toolkit", "description": "JavaScript tool that renames variables and parameters to names based on statistical model learnt from thousands of open source projects",
"homepage": "http://lisperator.net/uglifyjs", "homepage": "https://github.com/eth-srl/UnuglifyJS",
"main": "tools/node.js", "main": "tools/node.js",
"version": "2.4.16", "version": "0.9.0",
"engines": { "node" : ">=0.4.0" }, "engines": { "node" : ">=0.4.0" },
"maintainers": [{ "maintainers": [{
"name": "Mihai Bazon", "name": "Pavol Bielik",
"email": "mihai.bazon@gmail.com", "email": "pavol.bielik@inf.ethz.ch",
"web": "http://lisperator.net/" "web": "http://www.srl.inf.ethz.ch/bielik"
}], }],
"repository": { "repository": {
"type": "git", "type": "git",
"url": "https://github.com/mishoo/UglifyJS2.git" "url": "https://github.com/eth-srl/UnuglifyJS"
}, },
"dependencies": { "dependencies": {
"async" : "~0.2.6",
"source-map" : "0.1.34", "source-map" : "0.1.34",
"yargs": "~1.3.3", "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" "colors": "~1.0.3"
}, },
"browserify": { "devDependencies": {
"transform": [ "uglify-to-browserify" ] "escodegen": "~1.3.3",
"esfuzz": "~0.3.1",
"estraverse": "~1.5.1"
}, },
"bin": { "bin": {
"uglifyjs" : "bin/uglifyjs" "unuglifyjs" : "bin/unuglifyjs"
}, },
"license": "BSD", "license": "BSD",
"scripts": {"test": "node test/run-tests.js"} "scripts": {"test": "node test/run-tests.js"}