-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.41 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 2.41 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "scan-mcp",
"version": "1.0.0",
"description": "Comprehensive MCP security scanner with multi-modal vulnerability detection",
"main": "dist/index.js",
"bin": {
"mcp-scan": "./dist/cli.js"
},
"scripts": {
"build": "tsc && tsc-alias",
"dev": "tsc --watch",
"start": "node dist/index.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:integration": "jest tests/integration",
"test:adversarial": "jest tests/adversarial",
"test:self-scan": "jest tests/self-scan",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write src/**/*.ts",
"clean": "rm -rf dist",
"prepublish": "npm run clean && npm run build",
"audit": "npm audit && npm run test:security",
"test:security": "npm audit --audit-level high"
},
"keywords": [
"mcp",
"security",
"scanner",
"vulnerability",
"static-analysis",
"dynamic-analysis",
"model-context-protocol"
],
"author": "Cyreslab",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Cyreslab-AI/scan-mcp"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"@typescript-eslint/parser": "^6.21.0",
"acorn": "^8.11.0",
"commander": "^14.0.1",
"dockerfile-ast": "^0.4.0",
"dockerode": "^4.0.9",
"esprima": "^4.0.1",
"js-yaml": "^4.1.0",
"semver": "^7.5.4",
"tar": "^6.2.0",
"typescript": "^5.0.0"
},
"devDependencies": {
"@types/commander": "^2.12.0",
"@types/dockerode": "^3.3.44",
"@types/esprima": "^4.0.6",
"@types/jest": "^29.5.0",
"@types/js-yaml": "^4.0.0",
"@types/node": "^20.11.0",
"@types/tar": "^6.1.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"prettier": "^3.2.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.0",
"tsc-alias": "^1.8.16"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"**/tests/**/*.test.ts"
],
"collectCoverageFrom": [
"src/**/*.ts",
"!src/**/*.d.ts"
],
"coverageReporters": [
"text",
"lcov",
"html"
],
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 80,
"statements": 80
}
}
}
}