-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
42 lines (42 loc) · 1.24 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
{
"name": "cql-exec-fhir",
"version": "2.1.5",
"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",
"types": "./lib/index.d.ts",
"scripts": {
"build": "babel src index.d.ts -d lib --copy-files",
"prepublish": "npm run build",
"test": "mocha --reporter spec --recursive",
"test:watch": "npm test -- --watch",
"test:debug": "mocha --inspect --debug-brk --reporter spec --recursive",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "prettier --check \"**/*.js\"",
"prettier:fix": "prettier --write \"**/*.js\"",
"test:plus": "npm run test && npm run lint && npm run prettier"
},
"dependencies": {
"xml2js": "^0.5.0"
},
"devDependencies": {
"@babel/cli": "^7.17.3",
"@babel/core": "^7.17.3",
"@babel/preset-env": "^7.16.11",
"chai": "^4.3.4",
"cql-execution": ">=1.3.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.5.0",
"mocha": "9.2.2",
"prettier": "^2.7.1"
},
"peerDependencies": {
"cql-execution": ">=1.3.0 || ^3.0.0-beta"
}
}