-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.26 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.26 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
{
"name": "codeql-development-mcp-server_client",
"version": "2.25.1-next.1",
"description": "MCP client for integration testing of the CodeQL development MCP server",
"main": "src/ql-mcp-client.js",
"type": "module",
"bin": {
"codeql-mcp-client": "src/ql-mcp-client.js"
},
"keywords": [
"codeql",
"development",
"integration-testing",
"llm",
"mcp",
"model-context-protocol",
"ql",
"sast",
"security",
"static-analysis",
"typescript"
],
"author": "@github/ps-codeql",
"license": "SEE LICENSE IN LICENSE",
"engines": {
"node": ">=24.13.0",
"npm": ">=11.6.2"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.28.0",
"dotenv": "^17.3.1",
"js-yaml": "^4.1.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"prettier": "^3.8.1"
},
"scripts": {
"build": "echo 'NOOP client build'",
"clean": "echo 'NOOP client clean'",
"format": "prettier --write 'src/**/*.js'",
"format:check": "prettier --check 'src/**/*.js'",
"integration-test": "node src/ql-mcp-client.js integration-tests",
"lint": "eslint src --ext .js",
"lint:fix": "eslint src --ext .js --fix",
"server:logs": "scripts/show-server-logs.sh",
"server:start": "scripts/start-server.sh",
"server:stop": "scripts/stop-server.sh",
"server:wait": "scripts/wait-for-server.sh",
"start": "node src/ql-mcp-client.js integration-tests",
"test": "npm run test:integration",
"test:coverage": "echo 'NOOP client test:coverage'",
"test:integration": "ENABLE_MONITORING_TOOLS=false scripts/run-integration-tests.sh --no-install-packs",
"test:integration:default": "ENABLE_MONITORING_TOOLS=false scripts/run-integration-tests.sh --no-install-packs",
"test:integration:http": "MCP_MODE=http scripts/run-integration-tests.sh --no-install-packs",
"test:integration:install-packs": "scripts/run-integration-tests.sh",
"test:integration:monitoring": "ENABLE_MONITORING_TOOLS=true scripts/run-integration-tests.sh --no-install-packs",
"test:integration:stdio": "MCP_MODE=stdio scripts/run-integration-tests.sh --no-install-packs",
"tidy": "npm run lint && npm run format"
}
}