-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 2.07 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 2.07 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
{
"name": "cql-tests-runner",
"version": "1.7.1",
"description": "Server API and command line tools for running CQL tests",
"type": "module",
"main": "dist/bin/cql-tests.js",
"bin": {
"cql-tests": "dist/bin/cql-tests.js"
},
"scripts": {
"build": "tsc && npm run copy-assets",
"copy-assets": "cp -r assets dist/ && cp -r cvl dist/ && cp -r cql-tests dist/",
"dev": "tsc --watch",
"test": "vitest run test/",
"test:cql": "node --import tsx src/bin/cql-tests.ts run-tests conf/localhost.json ./results",
"cql-run-tests:dev": "tsx src/bin/cql-tests.ts run-tests conf/development.json ./results",
"cql-run-tests:local": "tsx src/bin/cql-tests.ts run-tests conf/localhost.json ./local_results",
"build-libs": "npm run build && node dist/bin/cql-tests.js build-cql conf/localhost.json ./cql",
"unit-tests": "vitest run test/",
"clean": "rm -rf dist",
"format": "prettier --write \"src/**/*.{ts,js,json}\" \"test/**/*.{ts,js,json}\" \"*.{ts,js,json,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,js,json}\" \"test/**/*.{ts,js,json}\" \"*.{ts,js,json,md}\"",
"format:staged": "prettier --write"
},
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"@types/uuid": "^11.0.0",
"antlr4": "4.13.2",
"axios": "^1.14.0",
"colors": "^1.4.0",
"commander": "^14.0.3",
"config": "^4.4.1",
"cors": "^2.8.6",
"date-fns": "^4.1.0",
"express": "^5.2.1",
"fast-xml-parser": "^5.5.9",
"uuid": "^13.0.0",
"zod": "^4.3.6",
"zod-from-json-schema": "^0.5.2"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/fhir": "^0.0.41",
"@types/node": "^25.5.0",
"@types/supertest": "^7.2.0",
"prettier": "^3.8.1",
"supertest": "^7.2.2",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
}
}