-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 944 Bytes
/
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
{
"name": "mcode_cql",
"version": "0.1.0",
"description": "mCODE CQL library",
"directories": {
"test": "test"
},
"jest": {
"verbose": true,
"setupFiles": [
"dotenv/config"
]
},
"scripts": {
"lint": "eslint \"**/*.js\"",
"lint:fix": "eslint \"./**/*.js\" --fix",
"prettier": "prettier --check \"**/*.js\"",
"prettier:fix": "prettier --write \"**/*.js\"",
"test": "test-cql -t ./test",
"test:unit": "jest --testPathPattern=test",
"translate": "translate-cql"
},
"devDependencies": {
"cql-exec-fhir": "^2.0.0",
"cql-execution": "^2.2.0",
"eslint": "^7.20.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"jest": "^26.6.3",
"prettier": "^2.2.1"
},
"author": "",
"license": "Apache-2.0",
"dependencies": {
"cql-testing-harness": "^0.0.4",
"dotenv": "^8.2.0"
}
}