-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 2.21 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
{
"name": "cql-tests-runner",
"version": "1.9.0-draft",
"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"
},
"engines": {
"node": ">=26"
},
"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",
"cql-run-tests:local-evaluate": "tsx src/bin/cql-tests.ts run-tests conf/localhost-evaluate.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.30.0",
"antlr4": "4.13.2",
"axios": "^1.19.0",
"colors": "^1.4.0",
"commander": "^15.0.0",
"config": "^5.0.1",
"cors": "^2.8.6",
"date-fns": "^4.4.0",
"express": "^5.2.1",
"fast-xml-parser": "^5.11.0",
"uuid": "^14.0.2",
"zod": "^4.4.3",
"zod-from-json-schema": "^0.5.6"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/fhir": "^0.0.44",
"@types/node": "^26.2.0",
"@types/supertest": "^7.2.1",
"prettier": "^3.9.6",
"supertest": "^7.2.2",
"tsx": "^4.23.12",
"typescript": "^7.0.2",
"vitest": "^4.1.11"
}
}