forked from FHIR/sushi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.91 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.91 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
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
{
"name": "fsh-sushi",
"version": "1.0.1",
"description": "Sushi Unshortens Short Hand Inputs (FSH Compiler)",
"scripts": {
"build": "rm -rf dist && tsc && cp -r src/utils/init-project dist/utils/init-project",
"build:watch": "tsc -w",
"build:grammar": "bash antlr/gradlew -p antlr generateGrammarSource",
"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}\"",
"check": "npm run test && npm run lint && npm run prettier",
"regression": "bash regression/run-regression.sh",
"prepare": "npm run build",
"prepublishOnly": "npm run check && npm run fixGrammarTypes",
"fixGrammarTypes": "ts-node dev/fixGrammarTypes.ts"
},
"contributors": [
"Julia Afeltra <jafeltra@mitre.org>",
"Nick Freiter <nfreiter@mitre.org>",
"Dylan Mahalingam <kmahalingam@mitre.org>",
"Chris Moesel <cmoesel@mitre.org>",
"Mint Thompson <mathompson@mitre.org>"
],
"repository": {
"type": "git",
"url": "https://github.com/fhir/sushi.git"
},
"main": "dist/index.js",
"bin": {
"sushi": "dist/app.js"
},
"types": "dist/index.d.ts",
"files": [
"dist/**/*.{js,json,d.ts}",
"dist/ig/files/**/*",
"dist/utils/init-project/**/*",
"antlr/**/*.g4"
],
"license": "Apache-2.0",
"devDependencies": {
"@types/fs-extra": "^8.1.0",
"@types/html-minifier": "^3.5.3",
"@types/ini": "^1.3.30",
"@types/jest": "^25.1.4",
"@types/lodash": "^4.14.149",
"@types/markdown-table": "^2.0.0",
"@types/node": "^12.12.34",
"@types/readline-sync": "^1.4.3",
"@types/sax": "^1.2.1",
"@types/tar": "^4.0.3",
"@types/temp": "^0.8.34",
"@types/valid-url": "^1.0.3",
"@types/wordwrap": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"acorn": "^7.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": {
"@types/antlr4": "^4.7.1",
"antlr4": "^4.8.0",
"axios": "^0.19.2",
"chalk": "^3.0.0",
"commander": "^4.1.1",
"fhir": "^4.7.9",
"fs-extra": "^8.1.0",
"html-minifier": "^4.0.0",
"ini": "^1.3.5",
"junk": "^3.1.0",
"lodash": "^4.17.19",
"markdown-table": "^2.0.0",
"readline-sync": "^1.4.10",
"sax": "^1.2.4",
"tar": "^5.0.5",
"temp": "^0.9.1",
"title-case": "^3.0.2",
"valid-url": "^1.0.9",
"winston": "^3.2.1",
"wordwrap": "^1.0.0",
"xml-js": "^1.6.11",
"yaml": "^1.9.2"
}
}