-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.16 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
{
"name": "cql-exec-fhir-mongo",
"version": "1.0.0",
"description": "Provides a MongoDB-based data provider for use with CQL",
"main": "src/index.js",
"scripts": {
"lint": "eslint \"**/*.js\"",
"lint:fix": "eslint \"**/*.js\" --fix",
"prettier": "prettier --check \"**/*.js\"",
"prettier:fix": "prettier --write \"**/*.js\"",
"check": "npm run test && npm run lint && npm run prettier",
"test": "jest",
"test:coverage": "jest --collectCoverage",
"test:watch": "jest --watchAll",
"test:watch:coverage": "jest --watchAll --collectCoverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/projecttacoma/cql-exec-fhir-mongo.git"
},
"author": "",
"license": "Apache-2.0",
"dependencies": {
"cql-exec-fhir": "git+https://git@github.com/projecttacoma/cql-exec-fhir",
"mongodb": "^4.5.0"
},
"homepage": "https://github.com/projecttacoma/cql-exec-fhir-mongo#readme",
"devDependencies": {
"cql-execution": "^2.4.0",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^27.5.1",
"prettier": "2.6.2"
},
"peerDependencies": {
"cql-execution": ">=2.4.0"
}
}