-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.36 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.36 KB
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
{
"name": "mcode-extraction-framework",
"version": "2.2.2",
"description": "",
"contributors": [
"Julia Afeltra <jafeltra@mitre.org>",
"Julian Carter <jacarter@mitre.org>",
"Matthew Gramigna <mgramigna@mitre.org>",
"Daniel Lee <daniellee@mitre.org>",
"Dylan Mahalingam <kmahalingam@mitre.org>",
"Dylan Mendelowitz <dmendelowitz@mitre.org>",
"Dylan Phelan <dphelan@mitre.org>"
],
"main": "src/",
"scripts": {
"start": "node src/cli/cli.js",
"lint": "eslint \"./**/*.js\"",
"lint-fix": "eslint \"./**/*.js\" --fix",
"test": "cross-env LOGGING=none jest",
"test:watch": "cross-env LOGGING=none jest --watchAll"
},
"license": "Apache-2.0",
"dependencies": {
"ajv": "^6.12.6",
"antlr4": "4.8.0",
"axios": "^0.21.4",
"commander": "^6.2.0",
"csv-parse": "^4.8.8",
"fhir-crud-client": "^1.2.2",
"fhir-mapper": "git+https://github.com/standardhealth/fhir-mapper.git#old-fhirpath",
"fhirpath": "2.1.5",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"nodemailer": "^6.7.2",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/jest": "^26.0.14",
"cross-env": "^7.0.0",
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"jest": "^26.6.3",
"jest-when": "^2.7.0",
"nock": "^11.7.0",
"rewire": "^5.0.0"
}
}