forked from FHIR/GoFSH
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.48 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
{
"name": "gofsh",
"version": "1.3.2",
"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 && cpy src/utils/template.html dist/utils",
"check": "npm run test && npm run lint && npm run prettier",
"test": "jest --maxWorkers=4 --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/app.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>"
],
"license": "Apache-2.0",
"devDependencies": {
"@types/diff": "^4.0.2",
"@types/flat": "^5.0.1",
"@types/fs-extra": "^9.0.1",
"@types/hogan.js": "^3.0.0",
"@types/ini": "^1.3.30",
"@types/jest": "^25.1.4",
"@types/lodash": "^4.14.159",
"@types/node": "^12.12.34",
"@types/readline-sync": "^1.4.3",
"@types/semver": "^7.3.4",
"@types/temp": "^0.8.34",
"@types/text-table": "^0.2.1",
"@types/toposort": "^2.0.3",
"@types/valid-url": "^1.0.3",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"cpy-cli": "^3.1.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"jest": "^25.2.4",
"jest-extended": "^0.11.5",
"opener": "^1.5.1",
"prettier": "^2.0.2",
"ts-jest": "^25.3.0",
"ts-node": "^8.8.1",
"typescript": "^3.8.3"
},
"dependencies": {
"chalk": "^4.1.0",
"commander": "^6.0.0",
"diff": "^5.0.0",
"diff2html": "^3.1.18",
"fhir": "^4.10.0",
"flat": "^5.0.2",
"fs-extra": "^9.0.1",
"fsh-sushi": "^2.1.1",
"ini": "^1.3.8",
"lodash": "^4.17.21",
"readline-sync": "^1.4.10",
"semver": "^7.3.2",
"temp": "^0.9.1",
"text-table": "^0.2.0",
"toposort": "^2.0.2",
"valid-url": "^1.0.9",
"winston": "^3.3.3",
"yaml": "^1.10.0"
}
}