This brings this codebase up to speed with current JS standards. - Moved tests to an updated version in test/feature_extractor.js (based on test/compress.js, which in turn was evolved from test/run-tests.js) - Update test/feature_extractor/*.js files to use valid JS syntax ( multiline strings in JS template strings) - Drop use of deprecated sys methods (using console instead). Upstream changes supporting the development process (.github/ and CONTRIBUTING.md) were not included in this merge.
29 lines
741 B
JSON
29 lines
741 B
JSON
{
|
|
"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",
|
|
"license": "BSD",
|
|
"version": "0.9.5",
|
|
"engines": { "node" : ">=0.8.0" },
|
|
"maintainers": [{
|
|
"name": "Pavol Bielik",
|
|
"email": "pavol.bielik@inf.ethz.ch"
|
|
}],
|
|
"repository": "/eth-srl/UnuglifyJS",
|
|
"main": "tools/node.js",
|
|
"bin": {
|
|
"unuglifyjs" : "bin/unuglifyjs"
|
|
},
|
|
"dependencies": {
|
|
"yargs": "~1.3.3",
|
|
"colors": "~1.0.3"
|
|
},
|
|
"devDependencies": {
|
|
"acorn": "~8.7.1",
|
|
"semver": "~6.3.0"
|
|
},
|
|
"scripts": {
|
|
"test": "node test/feature_extraction.js"
|
|
}
|
|
}
|