-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
95 lines (95 loc) · 2.78 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
{
"name": "gofsh",
"version": "2.5.0",
"description": "GoFSH is a FHIR Shorthand (FSH) decompiler, able to convert formal FHIR definitions from JSON to FSH.",
"main": "dist/index.js",
"scripts": {
"build": "rm -rf dist && tsc && copyfiles -u 2 \"src/utils/template.html\" dist/utils",
"check": "npm run test && npm run lint && npm run prettier",
"test": "jest --coverage",
"test:watch": "npm run test -- --watchAll",
"coverage": "opener coverage/lcov-report/index.html",
"lint": "tsc && eslint \"**/*.{js,ts}\"",
"lint:fix": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix",
"prettier": "prettier --check \"**/*.{js,ts}\"",
"prettier:fix": "prettier --write \"**/*.{js,ts}\"",
"prepare": "npm run build",
"prepublishOnly": "npm run check"
},
"bin": {
"gofsh": "dist/app.js"
},
"types": "dist/index.d.ts",
"files": [
"dist/**/*.{js,json,d.ts}",
"dist/utils/template.html"
],
"contributors": [
"Julia Afeltra <jafeltra@mitre.org>",
"Julian Carter <jacarter@mitre.org",
"Nick Freiter <nfreiter@mitre.org>",
"Chris Moesel <cmoesel@mitre.org>",
"Mint Thompson <mathompson@mitre.org>",
"Guhan B. Thuran <gthuran@mitre.org>"
],
"repository": {
"type": "git",
"url": "https://github.com/FHIR/GoFSH.git"
},
"license": "Apache-2.0",
"devDependencies": {
"@types/antlr4": "^4.11.6",
"@types/diff": "^5.2.3",
"@types/flat": "^5.0.5",
"@types/fs-extra": "^11.0.4",
"@types/hogan.js": "^3.0.5",
"@types/ini": "^4.1.1",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.12",
"@types/node": "^20.17.1",
"@types/readline-sync": "^1.4.8",
"@types/semver": "^7.5.8",
"@types/temp": "^0.9.4",
"@types/text-table": "^0.2.5",
"@types/toposort": "^2.0.7",
"@types/valid-url": "^1.0.7",
"@typescript-eslint/eslint-plugin": "^8.12.0",
"@typescript-eslint/parser": "^8.12.0",
"copyfiles": "^2.4.1",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"jest-extended": "^4.0.2",
"opener": "^1.5.2",
"prettier": "^3.3.3",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"dependencies": {
"antlr4": "^4.13.2",
"chalk": "^4.1.2",
"commander": "^12.1.0",
"diff": "^7.0.0",
"diff2html": "^3.4.48",
"fhir": "^4.12.0",
"fhir-package-loader": "^2.1.0",
"flat": "^5.0.2",
"fs-extra": "^11.2.0",
"fsh-sushi": "^3.14.0",
"ini": "^5.0.0",
"lodash": "^4.17.21",
"readline-sync": "^1.4.10",
"sanitize-filename": "^1.6.3",
"semver": "^7.6.3",
"temp": "^0.9.4",
"text-table": "^0.2.0",
"toposort": "^2.0.2",
"valid-url": "^1.0.9",
"winston": "^3.15.0",
"yaml": "^2.6.0"
},
"overrides": {
"semver": "$semver"
}
}