-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 3.03 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 3.03 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
{
"name": "sentinel-oracle",
"version": "1.0.2",
"description": "Sentinel Oracle — Secure Merge Authorization Server. Physically separated merge authority that prevents workstation-compromise attacks from reaching the main branch.",
"main": "dist/index.js",
"bin": {
"sentinel-oracle-server": "bin/sentinel-oracle.js"
},
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"setup": "node scripts/setup.cjs",
"test": "npm run build && npm run test:core && npm run test:intel1 && npm run test:intel2 && npm run test:intel3 && npm run test:intel4 && npm run test:intel5",
"test:core": "node --max-old-space-size=4096 node_modules/.bin/vitest run --config vitest.core.config.ts",
"test:intel1": "node --max-old-space-size=4096 node_modules/.bin/vitest run --config vitest.intel1.config.ts",
"test:intel2": "node --max-old-space-size=4096 node_modules/.bin/vitest run --config vitest.intel2.config.ts",
"test:intel3": "node --max-old-space-size=4096 node_modules/.bin/vitest run --config vitest.intel3.config.ts",
"test:intel4": "node --max-old-space-size=6144 node_modules/.bin/vitest run --config vitest.intel4.config.ts",
"test:intel5": "node --max-old-space-size=6144 node_modules/.bin/vitest run --config vitest.intel5.config.ts",
"test:watch": "node --max-old-space-size=4096 node_modules/.bin/vitest",
"prepare": "npm run build",
"pretest": ""
},
"keywords": [
"security",
"merge-authorization",
"github",
"webauthn",
"qr-auth",
"supply-chain-security",
"devsecops",
"air-gapped-authorization"
],
"license": "BUSSL-1.1",
"author": "Javier Astaroth <javier20dev25@sentinel.security>",
"repository": {
"type": "git",
"url": "git+https://github.com/javier20dev25/sentinel-oracle.git"
},
"bugs": {
"url": "https://github.com/javier20dev25/sentinel-oracle/issues"
},
"homepage": "https://github.com/javier20dev25/sentinel-oracle",
"engines": {
"node": ">=20.0.0"
},
"files": [
"dist/",
"bin/",
"src/",
"public/",
"docs/",
"README.md"
],
"dependencies": {
"@octokit/rest": "^21.1.1",
"@simplewebauthn/server": "^11.0.0",
"better-sqlite3": "^12.9.0",
"cookie-parser": "^1.4.7",
"express": "^4.21.2",
"express-rate-limit": "^7.5.0",
"helmet": "^8.0.0",
"node-forge": "^1.4.0",
"qrcode": "^1.5.4",
"uuid": "^11.1.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/cookie-parser": "^1.4.10",
"@types/express": "^5.0.1",
"@types/node": "^22",
"@types/node-forge": "^1.3.14",
"@types/qrcode": "^1.5.5",
"@types/uuid": "^10.0.0",
"tsx": "^4.22.4",
"typescript": "^5",
"vitest": "^4.1.9"
}
}