-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
123 lines (123 loc) · 2.83 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
{
"name": "fhirconverter",
"version": "2.0.0",
"description": "FHIR converter",
"main": "src/index.js",
"engines": {
"node": ">=10.10.0 <11.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/**/*.js",
"prestart": "node --experimental-worker src/init-service.js",
"start": "node --experimental-worker src/index.js",
"eslint": "eslint src/**/*.js"
},
"eslintConfig": {
"env": {
"browser": true,
"node": true,
"mocha": true,
"jquery": true,
"es6": true
},
"globals": {
"Split": "readable",
"Cookies": "readable",
"CodeMirror": "readable"
},
"parserOptions": {
"ecmaVersion": 9
},
"extends": "eslint:recommended",
"rules": {
"semi": [
"error",
"always"
],
"indent": [
"error",
4,
{
"SwitchCase": 1
}
]
}
},
"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"
},
"mocha": {
"reporter": "mocha-multi-reporters",
"spec": "src/**/*.spec.js",
"slow": 100,
"reporterOptions": {
"reporterEnabled": "spec, blahblah",
"xunitReporterOptions": {
"output": ".test_output/xunit.xml"
}
}
},
"devDependencies": {
"assert": "^2.0.0",
"eslint": "^6.1.0",
"mocha": "^6.2.0",
"mocha-junit-reporter": "^1.23.0",
"mocha-multi-reporters": "^1.1.7",
"nyc": "^14.1.1",
"supertest": "^4.0.2",
"validator": "^11.1.0"
},
"dependencies": {
"antlr4": "^4.7.2",
"applicationinsights": "^1.4.1",
"body-parser": "^1.19.0",
"codemirror": "^5.46.0",
"cookie-parser": "^1.4.4",
"deepmerge": "^4.2.2",
"express": "^4.16.4",
"fast-xml-parser": "^3.19.0",
"fhir": "^4.7.9",
"fs-extra": "^8.1.0",
"handlebars": "^4.7.6",
"he": "^1.2.0",
"lodash": "^4.17.19",
"memory-cache": "^0.2.0",
"ncp": "^2.0.0",
"nodegit": "^0.24.3",
"promise": "^8.0.3",
"pushover-giting": "0.0.3",
"swagger-jsdoc": "^3.2.9",
"swagger-ui-express": "^4.0.2",
"underscore": "^1.9.1",
"uuid": "^3.3.2",
"xml-parse-from-string": "^1.0.1",
"xml-to-json-stream": "^1.1.0",
"xml2js": "^0.4.23",
"xml2json": "^0.12.0"
},
"license": "MIT"
}