-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.66 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
{
"name": "@jordannewell/curtis-compliance",
"version": "1.3.1",
"description": "Open-source compliance checks for fintech code — pre-commit, PR review, and a hash-chained audit trail.",
"type": "module",
"main": "dist/compliance.js",
"bin": {
"curtis-compliance": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "jest",
"lint": "eslint src --ext .ts",
"prepublishOnly": "npm run build && npm test"
},
"keywords": [
"compliance",
"hipaa",
"soc2",
"pci-dss",
"fintech",
"security",
"audit",
"secrets",
"pre-commit"
],
"author": "Jordan Newell <jordan@jordannewell.com>",
"license": "MIT",
"homepage": "https://github.com/JordanNewell/curtis-compliance#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/JordanNewell/curtis-compliance.git"
},
"bugs": {
"url": "https://github.com/JordanNewell/curtis-compliance/issues"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"dist/**/*.json",
"README.md",
"CHANGELOG.md",
"LICENSE",
"SECURITY.md"
],
"dependencies": {
"commander": "^11.1.0",
"zod": "^3.22.4",
"glob": "^10.3.10",
"js-yaml": "^4.1.0",
"@octokit/rest": "^20.0.2"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/js-yaml": "^4.0.9",
"typescript": "^5.3.3",
"eslint": "^8.55.0",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"jest": "^29.7.0",
"@types/jest": "^29.5.11",
"ts-jest": "^29.1.1"
},
"engines": {
"node": ">=20.0.0"
}
}