-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.52 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
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
{
"name": "saraswati-cql-execution",
"version": "0.9.1",
"description": "An execution framework to run Clinical Quality Language (CQL) integrated within Saraswati",
"keywords": [
"CQL",
"HL7",
"MITRE",
"CQM"
],
"repository": {
"type": "git",
"url": "https://github.com/amida-tech/saraswati-cql-execution.git"
},
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"coveralls": "^3.1.1",
"cross-env": "^7.0.3",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"prettier": "^3.0.3",
"rewire": "^7.0.0",
"should": "^13.2.3",
"test-console": "^2.0.0",
"xml-js": "^1.6.11"
},
"dependencies": {
"@amida-tech/winston-json-formatter": "^0.10.2",
"@lhncbc/ucum-lhc": "5.0.0",
"axios": "^1.5.1",
"body-parser": "^1.20.2",
"cql-exec-fhir": "^2.1.5",
"cql-execution": "3.0.1",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-actuator": "1.8.4",
"joi": "^17.11.0",
"jsonl": "^1.1.2",
"kafkajs": "^2.2.4",
"luxon": "^3.4.3",
"minimist": "1.2.8",
"moment": "^2.29.4",
"node": "21.1.0",
"node-watch": "^0.7.4",
"ucum": "^0.0.7",
"uuid": "^9.0.1",
"winston": "^3.11.0",
"yarn": "^1.22.19"
},
"resolutions": {
"glob-parent": "^5.1.2"
},
"main": "lib/cql",
"directories": {
"lib": "lib"
},
"scripts": {
"start": "node processor-kafka.js",
"localread": "node processor.js",
"build": "babel src --out-dir lib",
"build:all": "npm run build --scripts-prepend-node-path",
"test": "mocha --reporter spec --recursive --timeout 15000",
"test:integration": "mocha ./integration-test/*-test.js --timeout 15000",
"test:seed": "mocha ./integration-test/manual-kafka-seed.js --timeout 10000",
"test:nyc": "set NODE_ENV=test&& nyc --reporter=html npx mocha --reporter spec --recursive --timeout 10000",
"test:jenkins": "set NODE_ENV=test&& nyc --reporter=cobertura npx mocha --reporter spec --recursive --timeout 10000",
"test:watch": "mocha --reporter spec --recursive --watch",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "prettier --check \"**/*.js\"",
"prettier:fix": "prettier --write \"**/*.js\"",
"test:plus": "npm test --scripts-prepend-node-path && npm run build --scripts-prepend-node-path && npm run lint --scripts-prepend-node-path && npm run prettier --scripts-prepend-node-path"
},
"license": "Apache-2.0"
}