2012-10-03 10:19:00 +00:00
{
2015-01-26 16:12:47 +00:00
"name" : "unuglify-js" ,
"description" : "JavaScript tool that renames variables and parameters to names based on statistical model learnt from thousands of open source projects" ,
2023-11-03 18:46:38 +00:00
"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" ,
2015-04-14 15:29:14 +00:00
"main" : "tools/node.js" ,
"bin" : {
2023-11-03 18:46:38 +00:00
"unuglifyjs" : "bin/unuglifyjs"
} ,
"dependencies" : {
"yargs" : "~1.3.3" ,
"colors" : "~1.0.3"
2015-04-14 15:29:14 +00:00
} ,
"devDependencies" : {
2022-07-10 23:18:25 +00:00
"acorn" : "~8.7.1" ,
2019-10-05 19:10:12 +00:00
"semver" : "~6.3.0"
2015-04-14 15:29:14 +00:00
} ,
"scripts" : {
2023-11-03 18:46:38 +00:00
"test" : "node test/feature_extraction.js"
}
2012-10-03 10:19:00 +00:00
}