-
Notifications
You must be signed in to change notification settings - Fork 86
/
package.json
30 lines (30 loc) · 852 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
{
"name": "obfuscator-io-deobfuscator",
"version": "1.0.4",
"description": "A deobfuscator for scripts obfuscated by Obfuscator.io",
"main": "dist/index.js",
"bin": "dist/cli.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "tsc && node dist/test.js",
"prepare": "tsc"
},
"author": "Ben",
"license": "ISC",
"dependencies": {
"@babel/generator": "^7.22.3",
"@babel/parser": "^7.22.4",
"@babel/traverse": "^7.22.4",
"@babel/types": "^7.22.4",
"@types/node": "^20.2.5",
"commander": "^12.0.0"
},
"devDependencies": {
"@types/babel__core": "^7.20.1",
"terser-webpack-plugin": "^5.3.9",
"ts-loader": "^9.4.4",
"typescript": "^5.1.3",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
}
}