-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
115 lines (115 loc) · 3.67 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "fsh-sushi",
"version": "3.12.0",
"description": "Sushi Unshortens Short Hand Inputs (FSH Compiler)",
"scripts": {
"build": "del-cli dist && tsc && copyfiles -u 3 \"src/utils/init-project/*\" dist/utils/init-project",
"build:watch": "tsc -w",
"build:grammar": "bash antlr/gradlew -p antlr generateGrammarSource",
"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}\"",
"check": "npm run test && npm run lint && npm run prettier",
"regression": "ts-node regression/cli",
"regression:last-year": "ts-node regression/cli run -l 365",
"regression:legacy-select": "ts-node regression/cli.ts run -f regression/repos-select.txt",
"regression:legacy-all": "ts-node regression/cli.ts run -f regression/repos-all.txt",
"regression:update-legacy": "ts-node regression/cli.ts update-legacy",
"prepare": "npm run build",
"prepublishOnly": "npm run check && npm run fixGrammarTypes",
"fixGrammarTypes": "ts-node dev/fixGrammarTypes.ts"
},
"contributors": [
"Julia Afeltra <[email protected]>",
"Nick Freiter <[email protected]>",
"Dylan Mahalingam <[email protected]>",
"Chris Moesel <[email protected]>",
"Mint Thompson <[email protected]>",
"Julian Carter <[email protected]>",
"Guhan Thuran <[email protected]",
"Kaelyn Jefferson <[email protected]>"
],
"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/utils/init-project/**/*",
"antlr/**/*.g4"
],
"license": "Apache-2.0",
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.13.0",
"@types/diff": "^5.2.3",
"@types/fs-extra": "^11.0.4",
"@types/html-minifier-terser": "5.1.1",
"@types/ini": "^4.1.1",
"@types/jest": "^29.5.14",
"@types/json-diff": "^1.0.3",
"@types/lodash": "^4.17.12",
"@types/node": "^20.17.1",
"@types/opener": "^1.4.3",
"@types/readline-sync": "^1.4.8",
"@types/sax": "^1.2.7",
"@types/temp": "^0.9.4",
"@types/text-table": "^0.2.5",
"@types/valid-url": "^1.0.7",
"@typescript-eslint/eslint-plugin": "^8.12.0",
"@typescript-eslint/parser": "^8.12.0",
"acorn": "^8.14.0",
"copyfiles": "^2.4.1",
"del-cli": "^6.0.0",
"diff": "^7.0.0",
"diff2html-cli": "^5.2.15",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"extract-zip": "^2.0.1",
"jest": "^29.7.0",
"jest-extended": "^4.0.2",
"json-diff": "^1.0.6",
"nock": "^13.5.5",
"opener": "^1.5.2",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"dependencies": {
"ajv": "^8.17.1",
"antlr4": "^4.13.2",
"axios": "^1.7.7",
"chalk": "^4.1.2",
"commander": "^12.1.0",
"fhir": "^4.12.0",
"fhir-package-loader": "^1.0.0",
"fs-extra": "^11.2.0",
"html-minifier-terser": "5.1.1",
"https-proxy-agent": "^7.0.5",
"ini": "^5.0.0",
"junk": "^3.1.0",
"lodash": "^4.17.21",
"readline-sync": "^1.4.10",
"sanitize-filename": "^1.6.3",
"sax": "^1.4.1",
"temp": "^0.9.4",
"text-table": "^0.2.0",
"title-case": "^3.0.3",
"valid-url": "^1.0.9",
"winston": "^3.15.0",
"yaml": "^1.10.2"
},
"overrides": {
"semver": "^7.5.4"
}
}