-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (44 loc) · 1.22 KB
/
package.json
File metadata and controls
47 lines (44 loc) · 1.22 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
{
"name": "mdt-cdf2fhir",
"version": "0.9.0",
"license": "Apache-2.0",
"description": "Tool for transformings cohort-study data into FHIR-resources given a series of pairing rules.",
"main": "dist/index.js",
"types" : "dist/index.d.ts",
"dependencies": {
"async-mutex": "0.4.0",
"commander": "11.1.0",
"csv-parse": "5.5.2",
"express": "4.18.2",
"fs": "0.0.1-security",
"jsonata": "2.0.4",
"moize": "6.1.6",
"object-hash": "3.0.0",
"uuid": "9.0.0",
"ws": "8.13.0"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jest": "^29.5.1",
"@types/node": "^18.16.3",
"@types/uuid": "^9.0.1",
"@types/ws": "^8.5.5",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"eslint": "^8.41.0",
"nodemon": "^2.0.22",
"ts-jest": "^29.1.0",
"typescript": "^5.1.6"
},
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint . --ext .ts",
"validatesamples": "ts-node fhirvalidation/validatesamples.js",
"cdf2fhir": "ts-node src/transform.ts",
"dev-viewer": "node_modules/nodemon/bin/nodemon.js dist/viewerserver/server"
},
"bin": {
"cdf2fhir": "dist/transform.js"
}
}