-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.72 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.72 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "restringer",
"version": "2.1.0",
"description": "Deobfuscate Javascript with emphasis on reconstructing strings",
"main": "index.js",
"type": "module",
"bin": {
"restringer": "./bin/deobfuscate.js"
},
"files": [
"index.js",
"bin",
"src",
"LICENSE",
"README.md"
],
"directories": {
"prepare": "husky install",
"test": "tests"
},
"dependencies": {
"commander": "^14.0.2",
"flast": "2.2.5",
"isolated-vm": "5.0.4",
"obfuscation-detector": "^2.0.7"
},
"scripts": {
"test": "node --test --trace-warnings --no-node-snapshot",
"test:coverage": "node --test --trace-warnings --no-node-snapshot --experimental-test-coverage",
"test:quick": "node --test --trace-warnings --no-node-snapshot tests/functionality.test.js tests/modules.*.test.js tests/processors.test.js tests/utils.test.js tests/deobfuscation.test.js",
"test:quick:watch": "node --test --trace-warnings --no-node-snapshot --watch tests/functionality.test.js tests/modules.*.test.js tests/processors.test.js tests/utils.test.js tests/deobfuscation.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HumanSecurity/restringer.git"
},
"keywords": [
"obfuscation",
"deobfuscate",
"deobfuscation",
"JS",
"javaScript",
"AST"
],
"author": "Ben Baryo ([email protected])",
"license": "MIT",
"bugs": {
"url": "https://github.com/HumanSecurity/restringer/issues"
},
"homepage": "https://github.com/HumanSecurity/restringer#readme",
"devDependencies": {
"@babel/eslint-parser": "^7.28.5",
"@babel/plugin-syntax-import-assertions": "^7.27.1",
"eslint": "^9.39.1",
"globals": "^16.5.0",
"husky": "^9.1.7"
}
}