generated from mgramigna/typescript-node-starter
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
101 lines (101 loc) · 3 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "fqm-execution",
"version": "1.6.0",
"description": "FHIR Quality Measure Execution",
"main": "build/index.js",
"types": "build/index.d.ts",
"bin": {
"fqm-execution": "build/cli.js"
},
"files": [
"build/*"
],
"dependencies": {
"@types/fhir": "0.0.34",
"axios": "^0.21.1",
"commander": "^6.1.0",
"cql-exec-fhir": "^2.1.3",
"cql-execution": "^3.1.0",
"handlebars": "^4.7.7",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"uuid": "^8.3.1"
},
"devDependencies": {
"@types/handlebars": "^4.1.0",
"@types/jest": "^26.0.5",
"@types/lodash": "^4.14.170",
"@types/node": "^14.0.23",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"axios-mock-adapter": "^1.19.0",
"cql-translation-service-client": "^0.6.1",
"docsify": "^4.13.1",
"ecqm-bundler": "^0.4.1",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"jest": "^29.3.1",
"opener": "^1.5.2",
"prettier": "^2.0.5",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc -w",
"build:systems": "ts-node src/scripts/parseCodeSystems.ts && prettier --write src/code-system/system-map.ts --loglevel silent",
"build:test-data": "cd test/integration && make",
"cli": "ts-node src/cli.ts",
"coverage": "opener coverage/lcov-report/index.html",
"docs": "docsify serve . ",
"lint": "tsc && eslint \"**/*.{js,ts}\"",
"lint:fix": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix",
"prettier": "prettier --check \"**/*.{js,ts}\"",
"prettier:fix": "prettier --write \"**/*.{js,ts}\"",
"test": "jest --testPathPattern \"unit\"",
"test:coverage": "jest --collectCoverage --testPathPattern \"unit\"",
"test:watch": "jest --watchAll --testPathPattern \"unit\"",
"test:watch:coverage": "jest --watchAll --collectCoverage --testPathPattern \"unit\"",
"test:integration": "jest --testPathPattern \"integration\"",
"test:plus": "npm run test && npm run test:integration",
"check": "npm run test && npm run lint && npm run prettier",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/projecttacoma/fqm-execution.git"
},
"contributors": [
{
"name": "Chris Hossenlopp",
"email": "[email protected]"
},
{
"name": "Matt Gramigna",
"email": "[email protected]"
},
{
"name": "Michael O'Keefe",
"email": "[email protected]"
},
{
"name": "Tom Strassner",
"email": "[email protected]"
},
{
"name": "Lauren DiCristofaro",
"email": "[email protected]"
},
{
"name": "Elsa Perelli",
"email": "[email protected]"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/projecttacoma/fqm-execution/issues"
},
"homepage": "https://github.com/projecttacoma/fqm-execution#readme"
}