forked from cqframework/cql-exec-fhir
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.03 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
{
"name": "cql-exec-fhir",
"version": "1.5.0",
"description": "Provides a FHIR-based data source for use w/ CQL",
"author": "Chris Moesel <[email protected]>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "[email protected]:cqframework/cql-exec-fhir.git"
},
"main": "./lib/index.js",
"scripts": {
"build": "babel src -d lib --copy-files",
"prepublish": "npm run build",
"test": "./node_modules/.bin/mocha --reporter spec --recursive",
"test:watch": "npm test -- --watch",
"test:debug": "./node_modules/.bin/mocha --inspect --debug-brk --reporter spec --recursive",
"lint": "./node_modules/.bin/eslint .",
"lint:fix": "./node_modules/.bin/eslint . --fix"
},
"dependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"xml2js": "~0.4.19"
},
"devDependencies": {
"chai": "^3.5.0",
"cql-execution": "~1.3.7",
"eslint": "^7.9.0",
"mocha": "^8.1.3"
},
"peerDependencies": {
"cql-execution": "~1.3.0"
}
}