-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.64 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.64 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
{
"name": "iso27001-mcp",
"version": "0.8.4",
"mcpName": "io.github.Sushegaad/iso27001-mcp",
"description": "ISO 27001 compliance workspace for Claude — controls, risks, policies, evidence, audits, and SoA in one local encrypted MCP server",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Sushegaad/MCP-Server-for-ISO27001.git"
},
"homepage": "https://github.com/Sushegaad/MCP-Server-for-ISO27001#readme",
"bugs": {
"url": "https://github.com/Sushegaad/MCP-Server-for-ISO27001/issues"
},
"keywords": [
"iso27001",
"iso-27001",
"iso27001-2022",
"isms",
"mcp",
"model-context-protocol",
"claude",
"compliance",
"information-security",
"security-audit",
"gap-analysis",
"risk-management",
"risk-register",
"statement-of-applicability",
"soa",
"annex-a",
"corrective-action",
"evidence-tracking",
"policy-management",
"certification-readiness",
"grc"
],
"engines": {
"node": ">=20.11.0"
},
"volta": {
"node": "20.11.0"
},
"bin": {
"iso27001-mcp": "./dist/index.js"
},
"browser": false,
"main": "./dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"postbuild": "rm -rf dist/seed && mkdir -p dist/seed && cp -r src/seed/policy-templates dist/seed/policy-templates && cp -r src/seed/procedure-templates dist/seed/procedure-templates && cp -r src/seed/evidence-templates dist/seed/evidence-templates && cp -r src/seed/partials dist/seed/partials",
"prepack": "npm run build",
"prepublishOnly": "npm run typecheck && npm test && npm run build",
"typecheck": "tsc --noEmit",
"lint": "eslint src --ext .ts",
"test": "vitest run --coverage",
"test:watch": "vitest",
"dev": "tsx src/index.ts",
"generate-checksums": "tsx scripts/generate-checksums.ts",
"verify-checksums": "tsx scripts/verify-checksums.ts"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.29.0",
"better-sqlite3-multiple-ciphers": "12.9.0",
"mustache": "4.2.0",
"zod": "3.25.76"
},
"optionalDependencies": {
"express": "4.22.1",
"express-rate-limit": "7.5.1"
},
"overrides": {
"fast-uri": ">=3.1.2"
},
"devDependencies": {
"@types/better-sqlite3": "7.6.13",
"@types/express": "4.17.25",
"@types/mustache": "4.2.6",
"@types/node": "20.19.39",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"@vitest/coverage-istanbul": "1.6.1",
"@vitest/coverage-v8": "1.6.1",
"eslint": "8.57.1",
"tsup": "8.4.0",
"tsx": "4.21.0",
"typescript": "5.4.5",
"vitest": "1.6.1"
}
}