-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
124 lines (124 loc) · 3.58 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "cql-execution",
"version": "3.1.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": "[email protected]"
},
{
"name": "Rob Dingwell",
"email": "[email protected]"
},
{
"name": "Jason Walonoski",
"email": "[email protected]"
},
{
"name": "Luke Osborne",
"email": "[email protected]"
},
{
"name": "Kristian Mulcahy",
"email": "[email protected]"
},
{
"name": "James Bradley",
"email": "[email protected]"
},
{
"name": "Chris Hossenlopp",
"email": "[email protected]"
},
{
"name": "Chris Tohline",
"email": "[email protected]"
},
{
"name": "Adam Holmes",
"email": "[email protected]"
},
{
"name": "Pete Krautscheid",
"email": "[email protected]"
},
{
"name": "Dylan Mahalingam",
"email": "[email protected]"
},
{
"name": "Matthew Gramigna",
"email": "[email protected]"
}
],
"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"
}