forked from mishoo/UglifyJS
-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
32 lines (32 loc) · 942 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"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": "0.9.5",
"engines": { "node" : ">=0.4.0" },
"maintainers": [{
"name": "Pavol Bielik",
"email": "[email protected]"
}],
"repository": {
"type": "git",
"url": "https://github.com/eth-srl/UnuglifyJS"
},
"dependencies": {
"source-map" : "0.1.34",
"yargs": "~1.3.3",
"colors": "~1.0.3"
},
"devDependencies": {
"acorn": "~0.6.0",
"escodegen": "~1.3.3",
"esfuzz": "~0.3.1",
"estraverse": "~1.5.1"
},
"bin": {
"unuglifyjs" : "bin/unuglifyjs"
},
"license": "BSD",
"scripts": {"test": "node test/run-tests.js"}
}