cql-execution
Version:
An execution framework for the Clinical Quality Language (CQL)
125 lines (124 loc) • 3.67 kB
JSON
{
"name": "cql-execution",
"version": "3.2.0",
"description": "An execution framework for the Clinical Quality Language (CQL)",
"keywords": [
"CQL",
"HL7",
"MITRE",
"CQM"
],
"bugs": {
"url": "https://github.com/cqframework/clinical_quality_language/issues"
},
"contributors": [
{
"name": "Chris Moesel",
"email": "cmoesel@mitre.org"
},
{
"name": "Rob Dingwell",
"email": "bobd@mitre.org"
},
{
"name": "Jason Walonoski",
"email": "jwalonoski@mitre.org"
},
{
"name": "Luke Osborne",
"email": "lwosborne@mitre.org"
},
{
"name": "Kristian Mulcahy",
"email": "kmulcahy@mitre.org"
},
{
"name": "James Bradley",
"email": "jhbradley@mitre.org"
},
{
"name": "Chris Hossenlopp",
"email": "hossenlopp@mitre.org"
},
{
"name": "Chris Tohline",
"email": "ctohline@mitre.org"
},
{
"name": "Adam Holmes",
"email": "aholmes@mitre.org"
},
{
"name": "Pete Krautscheid",
"email": "krautscheid@mitre.org"
},
{
"name": "Dylan Mahalingam",
"email": "kmahalingam@mitre.org"
},
{
"name": "Matthew Gramigna",
"email": "mgramigna@mitre.org"
}
],
"repository": {
"type": "git",
"url": "https://github.com/cqframework/cql-execution.git"
},
"devDependencies": {
"@types/luxon": "1",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.10",
"@types/should-sinon": "0.0.8",
"@types/sinon": "^10.0.11",
"@types/test-console": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"browserify": "^16.5.1",
"cross-env": "^7.0.3",
"eslint": "^8.0.1",
"eslint-config-prettier": "^6.11.0",
"mocha": "^10.1.0",
"nyc": "^17.0.0",
"prettier": "^2.1.1",
"should": "^13.2.3",
"should-sinon": "0.0.6",
"sinon": "^13.0.1",
"test-console": "^2.0.0",
"ts-node": "^10.4.0",
"typescript": "^4.5.4",
"xml-js": "^1.6.11"
},
"dependencies": {
"@lhncbc/ucum-lhc": "^4.1.3",
"immutable": "^4.1.0",
"luxon": "^1.28.1"
},
"resolutions": {
"glob-parent": "^5.1.2",
"ansi-regex": "^5.0.1"
},
"main": "lib/cql",
"types": "lib/cql.d.ts",
"directories": {
"lib": "lib"
},
"scripts": {
"prepare": "npm run build && npm run build:browserify",
"build": "tsc",
"build:browserify": "npm run build && node ./bin/browserify.js",
"build:test-data": "cd \"./test/generator\" && \"./gradlew\" generateTestData && cd ..",
"build:spec-test-data": "node \"test/spec-tests/generate-cql.js\" && cd \"./test/generator\" && \"./gradlew\" generateSpecTestData && cd ..",
"build:all": "npm run build && npm run build:browserify && npm run build:test-data && npm run build:spec-test-data",
"watch:test-data": "cd \"./test/generator\" && \"./gradlew\" watchTestData && cd ..",
"test": "cross-env TS_NODE_PROJECT=\"./test/tsconfig.json\" TS_NODE_FILES=true mocha --reporter spec --recursive",
"test:nyc": "cross-env TS_NODE_PROJECT=\"./test/tsconfig.json\" TS_NODE_FILES=true nyc --reporter=html npx mocha --reporter spec --recursive",
"test:watch": "cross-env TS_NODE_PROJECT=\"./test/tsconfig.json\" TS_NODE_FILES=true mocha --reporter spec --recursive --watch",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "prettier --check \"**/*.{js,ts}\"",
"prettier:fix": "prettier --write \"**/*.{js,ts}\"",
"test:plus": "npm test && npm run build && npm run lint && npm run prettier"
},
"license": "Apache-2.0"
}