-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.34 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
{
"name": "ecqm-bundler",
"version": "0.4.1",
"description": "CLI for bundling FHIR-based eCQMs",
"main": "dist/index.js",
"bin": {
"ecqm-bundler": "dist/index.js"
},
"files": [
"dist/*"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"build:test-data": "ts-node test/fixtures/genTestData.ts",
"lint": "npm run build && eslint \"**/*.{js,ts}\"",
"lint:fix": "npm run build -- --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix",
"prepare": "npm run build",
"prettier": "prettier --check \"**/*.{js,ts}\"",
"prettier:fix": "prettier --write \"**/*.{js,ts}\"",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/fhir": "^0.0.35",
"@types/inquirer": "^9.0.3",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.29",
"@types/uuid": "^8.3.4",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^27.5.1",
"prettier": "^2.8.4",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typescript": "^4.9.3"
},
"dependencies": {
"commander": "^9.2.0",
"cql-translation-service-client": "^0.6.1",
"inquirer": "^9.1.4",
"uuid": "^9.0.0",
"winston": "^3.7.2"
}
}