forked from sorliog/cdss-testing-harness
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.42 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
{
"name": "cql-testing-harness",
"version": "0.0.4",
"description": "A tool for testing the development of CQL libraries",
"main": "./src/index.js",
"bin": {
"test-cql": "./src/scripts/run.js",
"translate-cql": "./src/scripts/buildElm.js"
},
"files": [
"src/*"
],
"scripts": {
"lint": "eslint \"**/*.js\"",
"lint:fix": "eslint \"./**/*.js\" --fix",
"prettier": "prettier --check \"**/*.js\"",
"prettier:fix": "prettier --write \"**/*.js\"",
"test": "jest",
"test-cql": "node ./src/scripts/run.js",
"translate-cql": "node ./src/scripts/buildElm.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mcode/cql-testing-harness.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/mcode/cql-testing-harness/issues"
},
"homepage": "https://github.com/mcode/cql-testing-harness#readme",
"dependencies": {
"cdss-common": "file:../EMR_EHR4CDSSPCP/Common/cdss-common",
"cql-exec-fhir": "^2.0.0",
"cql-exec-vsac": "^2.2.0",
"cql-execution": "^2.2.0",
"cql-translation-service-client": "^0.6.0",
"date-and-time": "^3.4.1",
"dotenv": "^8.2.0",
"jest": "^26.6.3",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"eslint": "^7.23.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-no-secrets": "^1.0.2",
"prettier": "^2.2.1"
}
}