forked from PerimeterX/obfuscation-detector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 910 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
33
34
35
36
37
38
39
40
{
"name": "obfuscation-detector",
"version": "1.1.7",
"description": "Javascript obfuscation detector",
"main": "src/index.js",
"directories": {
"prepare": "husky install",
"test": "tests"
},
"scripts": {
"test": "node tests/testDetectors.js"
},
"bin": {
"obfuscation-detector": "./bin/obfuscation-detector.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PerimeterX/obfuscation-detector.git"
},
"keywords": [
"JS",
"Javascript",
"obfuscation",
"detection",
"detector"
],
"author": "ben.baryo@perimeterx.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/PerimeterX/obfuscation-detector/issues"
},
"homepage": "https://github.com/PerimeterX/obfuscation-detector#readme",
"devDependencies": {
"eslint": "^8.49.0",
"husky": "^8.0.1"
},
"dependencies": {
"flast": "^1.6.0"
}
}