forked from metriport/metriport
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
127 lines (127 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "fhirconverter",
"version": "2.1.1",
"description": "FHIR converter",
"main": "src/index.js",
"private": true,
"scripts": {
"clean": "rimraf node_modules",
"build": "npm run eslint && npm run full-hbs-lint",
"pretest": "node --experimental-worker src/init-service.js",
"test": "jest --runInBand --detectOpenHandles --passWithNoTests",
"prestart": "node --experimental-worker src/init-service.js",
"dev": "PORT=8777 nodemon --experimental-worker src/index.js",
"start": "node --experimental-worker src/index.js",
"start-dev": "npm run dev",
"start-docker-compose": "docker compose -f docker-compose.yml up",
"eslint": "eslint src/**/*.js",
"lint:hbs": "ember-template-lint src/templates/cda > lint-results.txt",
"full-hbs-lint": "./full-hbs-lint.sh"
},
"eslintConfig": {
"env": {
"browser": true,
"node": true,
"jquery": true,
"es6": true
},
"globals": {
"Split": "readable",
"Cookies": "readable",
"CodeMirror": "readable"
},
"parserOptions": {
"ecmaVersion": 2020
},
"extends": "eslint:recommended",
"rules": {
"semi": [
"error",
"always"
],
"indent": [
"error",
2,
{
"SwitchCase": 1
}
]
},
"overrides": [
{
"files": [
"src/**/__tests__/*.js"
],
"env": {
"jest": true
}
}
]
},
"eslintIgnore": [
"src/lib/outputProcessor/autogen/*.js"
],
"nyc": {
"check-coverage": true,
"per-file": true,
"lines": 90,
"statements": 90,
"functions": 90,
"branches": 90,
"include": [
"src/**/*.js"
],
"exclude": [
"**/*.spec.js",
"src/lib/outputProcessor/autogen/*.js"
],
"reporter": [
"text",
"cobertura",
"html"
],
"report-dir": "./.test_output/coverage"
},
"devDependencies": {
"@faker-js/faker": "^8.0.2",
"assert": "^2.0.0",
"ember-template-lint": "^5.13.0",
"eslint": "^7.15.0",
"jest": "^29.5.0",
"nyc": "^14.1.1",
"openapi-types": "^12.1.3",
"supertest": "^4.0.2",
"validator": "^13.7.0"
},
"dependencies": {
"antlr4": "4.9.2",
"applicationinsights": "^1.4.1",
"body-parser": "^1.19.0",
"codemirror": "^5.62.0",
"convert-units": "^2.3.4",
"cookie-parser": "^1.4.4",
"deepmerge": "^4.2.2",
"express": "^4.19.2",
"fast-xml-parser": "^4.3.3",
"fhir": "^4.7.9",
"fs-extra": "^8.1.0",
"handlebars": ">= 4.7.7",
"he": "^1.2.0",
"install": "^0.13.0",
"lodash": "^4.17.21",
"memory-cache": "^0.2.0",
"minify-xml": "3.5.0",
"minimist": ">= 1.2.6",
"ncp": "^2.0.0",
"nodemon": "^3.0.3",
"promise": "^8.0.3",
"pushover-giting": "0.0.3",
"swagger-jsdoc": "^6.1.0",
"swagger-ui-dist": ">= 4.1.3",
"swagger-ui-express": "^4.2.0",
"underscore": "^1.13.1",
"uuid": "^3.3.2",
"xml2js": "^0.4.23"
},
"license": "AGPL-3.0-only"
}