-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
43 lines (43 loc) · 1 KB
/
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
41
42
43
{
"name": "obfuscation-detector",
"version": "2.0.5",
"description": "Javascript obfuscation detector",
"main": "src/index.js",
"type": "module",
"directories": {
"prepare": "husky",
"test": "tests"
},
"scripts": {
"lint": "eslint .",
"test": "node --test",
"test:coverage": "node --trace-warnings --test --experimental-test-coverage"
},
"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 ([email protected])",
"license": "MIT",
"bugs": {
"url": "https://github.com/PerimeterX/obfuscation-detector/issues"
},
"homepage": "https://github.com/PerimeterX/obfuscation-detector#readme",
"devDependencies": {
"eslint": "^9.16.0",
"husky": "^9.1.7"
},
"dependencies": {
"flast": "^2.2.1"
}
}