-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.1 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.1 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
{
"name": "cql-testing",
"version": "2.6.1",
"description": "Provides utilities for testing CQL logic",
"license": "Apache-2.0",
"main": "src/index.js",
"scripts": {
"cql-to-elm": "./gradlew cql2elm",
"test": "./node_modules/.bin/mocha --reporter spec --recursive",
"test:watch": "npm test -- --watch",
"test:debug": "./node_modules/.bin/mocha --inspect --inspect-brk --reporter spec --recursive",
"lint": "./node_modules/.bin/eslint .",
"lint:fix": "./node_modules/.bin/eslint . --fix",
"doc": "node ./src/doc-gen.js"
},
"dependencies": {
"chai": "^4.4.1",
"convict": "^6.2.3",
"cql-exec-fhir": "^2.1.5",
"cql-exec-vsac": "^2.2.0",
"fs-extra": "^11.2.0",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"mocha": "^10.6.0",
"semver": "^7.6.2",
"uuid": "^10.0.0"
},
"peerDependencies": {
"cql-execution": ">=1.3.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.6.0",
"cql-execution": "^3.0.1",
"eslint": "^9.6.0",
"globals": "^15.8.0"
},
"bin": {
"cql-to-elm": "bin/cql2elm.js"
}
}