forked from microsoft/FHIR-Converter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 2.87 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
{
"name": "fhirconverter",
"version": "2.1.1",
"description": "FHIR converter",
"main": "src/index.js",
"engines": {
"node": ">=14.0 <19.0"
},
"scripts": {
"test": "nyc node --experimental-worker node_modules/mocha/bin/_mocha --reporter-options configFile=mocha.config.json --exit",
"build": "npm install",
"pretest": "node --experimental-worker src/init-service.js",
"posttest": "eslint {src,test}/**/*.js",
"prestart": "node --experimental-worker src/init-service.js",
"start": "node --experimental-worker src/index.js",
"eslint": "eslint {src,test}/**/*.js",
"eslintv": "eslint -v",
"xmlToFhirResource": "node src/convert-xml-to-fhir-resource.js",
"regenChirpTestFile": "node src/convert-xml-to-fhir-resource.js --chirp-test-file"
},
"eslintConfig": {
"env": {
"browser": true,
"node": true,
"mocha": true,
"jquery": true,
"es2022": true
},
"globals": {
"Split": "readable",
"Cookies": "readable",
"CodeMirror": "readable"
},
"extends": "eslint:recommended",
"rules": {
"semi": [
"error",
"always"
],
"indent": [
"error",
4,
{
"SwitchCase": 1
}
]
}
},
"eslintIgnore": [
"src/lib/outputProcessor/autogen/*.js"
],
"nyc": {
"check-coverage": false,
"per-file": true,
"lines": 90,
"statements": 90,
"functions": 90,
"branches": 90,
"include": [
"@(src|test)/**/*.js"
],
"exclude": [
"**/*.spec.js",
"src/lib/outputProcessor/autogen/*.js"
],
"reporter": [
"text",
"cobertura",
"html"
],
"report-dir": "./.test_output/coverage"
},
"mocha": {
"reporter": "mocha-multi-reporters",
"spec": "@(src|test)/**/*.spec.js",
"slow": 100,
"reporterOptions": {
"reporterEnabled": "spec, blahblah",
"xunitReporterOptions": {
"output": ".test_output/xunit.xml"
}
}
},
"devDependencies": {
"assert": "^2.0.0",
"eslint": "^8.23.0",
"mocha": "^6.2.3",
"mocha-junit-reporter": "^1.23.0",
"mocha-multi-reporters": "^1.1.7",
"nyc": "^14.1.1",
"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",
"cookie-parser": "^1.4.4",
"deepmerge": "^4.2.2",
"express": "^4.16.4",
"fhir": "^4.7.9",
"fs-extra": "^8.1.0",
"handlebars": ">= 4.7.7",
"lodash": "^4.17.21",
"memory-cache": "^0.2.0",
"minimist": ">= 1.2.6",
"ncp": "^2.0.0",
"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.5.0"
},
"license": "MIT"
}