-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
60 lines (60 loc) · 1.48 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "pentest-tool-lite",
"description": "Check your website ( or any other website ) for common vulnerabilities.",
"version": "3.9.1",
"homepage": "https://pentest-tool-lite.com",
"license": "MIT",
"author": {
"name": "Matej Jellus",
"email": "[email protected]",
"url": "https://juffalow.com"
},
"bin": {
"pentest-tool-lite": "./src/index"
},
"dependencies": {
"@google-cloud/web-risk": "^4.0.1",
"commander": "^6.0.0",
"csso": "^5.0.5",
"domhandler": "^4.2.2",
"htmlparser2": "^7.1.2",
"node-fetch": "^2.6.0",
"ssl-checker": "^2.0.7",
"uglify-js": "^3.6.1",
"whois": "^2.14.2",
"xml2js": "^0.6.2"
},
"repository": {
"type": "git",
"url": "https://github.com/juffalow/pentest-tool-lite.git"
},
"bugs": {
"url": "https://github.com/juffalow/pentest-tool-lite/issues"
},
"scripts": {
"start": "tsc && node dist/src/index.js",
"build": "tsc",
"lint": "eslint . --ext .ts",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/node": "^20.12.2",
"@types/node-fetch": "^2.5.7",
"@types/uglify-js": "^3.0.4",
"@types/xml2js": "^0.4.5",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"eslint": "^8.0.1",
"jest": "^29.4.3",
"ts-jest": "^29.0.5",
"typescript": "^5.2.2"
},
"keywords": [
"pentest-tool",
"pentesting",
"penetration-test",
"analyzer",
"analyser"
]
}