UglifyJS/package.json

53 lines
1.2 KiB
JSON
Raw Normal View History

2012-10-03 10:19:00 +00:00
{
"name": "uglify-js",
"description": "JavaScript parser, mangler/compressor and beautifier toolkit",
"homepage": "http://lisperator.net/uglifyjs",
"author": "Mihai Bazon <mihai.bazon@gmail.com> (http://lisperator.net/)",
2015-05-04 23:33:09 +00:00
"license": "BSD-2-Clause",
2015-10-11 15:24:38 +00:00
"version": "2.5.0",
"engines": {
"node": ">=0.8.0"
},
"maintainers": [
"Mihai Bazon <mihai.bazon@gmail.com> (http://lisperator.net/)"
],
"repository": {
"type": "git",
"url": "https://github.com/mishoo/UglifyJS2.git"
},
"bugs": {
"url": "https://github.com/mishoo/UglifyJS2/issues"
},
"main": "tools/node.js",
"bin": {
"uglifyjs": "bin/uglifyjs"
},
"files": [
"bin",
"lib",
"tools",
"LICENSE"
],
"dependencies": {
2015-11-02 19:54:59 +00:00
"async": "~1.5.0",
"source-map": "~0.5.3",
"uglify-to-browserify": "~1.0.0",
2015-11-02 19:54:59 +00:00
"yargs": "~3.29.0"
},
"devDependencies": {
2015-11-02 19:54:59 +00:00
"acorn": "~2.5.2",
"escodegen": "~1.7.0",
"esfuzz": "~0.3.1",
2015-11-02 19:54:59 +00:00
"estraverse": "~4.1.1"
},
"browserify": {
"transform": [
"uglify-to-browserify"
]
},
"scripts": {
"shrinkwrap": "rm ./npm-shrinkwrap.json; rm -rf ./node_modules; npm i && npm shrinkwrap && npm outdated",
"test": "node test/run-tests.js"
}
2012-10-03 10:19:00 +00:00
}