forked from microsoft/FHIR-Converter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
132 lines (132 loc) · 3.29 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
128
129
130
131
132
{
"name": "fhirconverter",
"version": "2.0.0",
"description": "FHIR converter",
"main": "src/index.js",
"engines": {
"node": ">=10.10.0 <15.0"
},
"scripts": {
"dev": "sls offline --httpPort=2019 --lambdaPort 3003",
"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",
"deploy:prod": "serverless deploy --stage=prod",
"deploy:dev": "serverless deploy --stage=dev"
},
"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|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": "^6.1.0",
"mocha": "^6.2.0",
"mocha-junit-reporter": "^1.23.0",
"mocha-multi-reporters": "^1.1.7",
"nyc": "^14.1.1",
"serverless": "^2.20.1",
"serverless-domain-manager": "5.1.0",
"serverless-newrelic-lambda-layers": "1.0.0",
"serverless-offline": "^6.8.0",
"serverless-plugin-bind-deployment-id": "2.0.2",
"serverless-plugin-tracing": "2.0.0",
"serverless-prune-plugin": "1.4.3",
"serverless-pseudo-parameters": "2.5.0",
"serverless-stack-output": "0.2.3",
"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",
"cors": "^2.8.5",
"deepmerge": "^4.2.2",
"express": "^4.16.4",
"fhir": "^4.8.2",
"fs-extra": "^8.1.0",
"handlebars": "^4.7.6",
"lodash": "^4.17.19",
"memory-cache": "^0.2.0",
"ncp": "^2.0.0",
"nodegit": "^0.27.0",
"promise": "^8.0.3",
"pushover-giting": "0.0.3",
"serverless-http": "^2.6.0",
"swagger-jsdoc": "^3.2.9",
"swagger-ui-express": "^4.0.2",
"underscore": "^1.9.1",
"uuid": "^3.3.2",
"xml2js": "^0.4.23"
},
"license": "MIT"
}