-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.78 KB
/
package.json
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
{
"name": "vci-directory-auditor",
"version": "1.0.0",
"description": "Audit tool for the VCI Issuers Directory",
"main": "src/index.ts",
"scripts": {
"build": "tsc",
"audit": "ts-node --files src/index.ts",
"genkeys": "ts-node --files src/genkeys.ts -p public.json -s private.json",
"sign": "ts-node --files src/signfiles.ts -k private.json -f logs/daily_dir_snapshot.json -o logs/signed.json",
"verify": "ts-node --files src/verifyfiles.ts -k public.json -o logs/verified_daily_dir_snapshot.json -f logs/signed.json",
"test": "ts-node --files src/index.ts --directory 'https://raw.githubusercontent.com/smart-on-fhir/health-cards-validation-SDK/main/testdata/test-issuers.json'",
"test-audit-1": "ts-node --files src/index.ts -t -d 'https://raw.githubusercontent.com/christianpaquin/void/main/shc/audit-1/test-directory.json' -a logs/audit-1.json -o logs/dirlog-1.json",
"test-audit-2": "ts-node --files src/index.ts -t -d 'https://raw.githubusercontent.com/christianpaquin/void/main/shc/audit-2/test-directory.json' -a logs/audit-2.json -o logs/dirlog-2.json -p logs/dirlog-1.json",
"test-audit-3": "ts-node --files src/index.ts -t -d 'https://raw.githubusercontent.com/christianpaquin/void/main/shc/audit-3/test-directory.json' -a logs/audit-3.json -o logs/dirlog-3.json -p logs/dirlog-2.json"
},
"author": "",
"license": "ISC",
"dependencies": {
"base64url": "^3.0.1",
"commander": "^8.1.0",
"date-and-time": "^1.0.1",
"execa": "^5.1.1",
"fs": "*",
"got": "^11.8.2",
"node-jose": "^2.0.0",
"path": "^0.12.7",
"ts-node": "^10.2.0",
"typescript": "^4.3.5",
"url-parse": "^1.5.3"
},
"devDependencies": {
"@types/date-and-time": "^0.13.0",
"@types/node-jose": "^1.1.8",
"@types/url-parse": "^1.4.4"
}
}