This repository was archived by the owner on Dec 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
62 lines (62 loc) · 2 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
{
"name": "fhir-typescript-models",
"version": "1.0.3",
"description": "TypeScript FHIR models generated from the model-info-parser utility",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/MeasureAuthoringTool/fhir-typescript-models.git"
},
"files": [
"dist/**/*"
],
"main": "dist/src/models/all.js",
"scripts": {
"prebuild": "rm -rf dist",
"build": "tsc",
"generate-models": "rm -rf src/models/fhir; npx generateTypeScriptTypes -o $PWD/src/models/fhir -f ./resources/fhir-modelinfo-4.0.1.xml",
"lint": "npx eslint . --fix --ext .js,.ts",
"test": "npx jest",
"coverage": "npx jest --coverage"
},
"keywords": [],
"author": "SemanticBits [email protected]",
"license": "CC0-1.0",
"dependencies": {
"eslint-config-airbnb": "^18.2.1",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/node": "^16.10.1",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"eslint": "^7.32.0",
"eslint-config-airbnb-typescript": "^14.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.4.2",
"eslint-plugin-promise": "^5.1.0",
"jest": "^26.6.3",
"jest-extended": "^0.11.5",
"model-info-parser": "^1.0.7",
"prettier": "^2.4.1",
"ts-jest": "^26.5.6",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"contributors": [
"Andrew Bird <[email protected]>",
"Ashok Dongare <[email protected]>",
"Joseph Kotanchik <[email protected]>",
"Rohit Kandimalla <[email protected]>",
"Serhii Ilin <[email protected]>"
],
"bugs": {
"url": "https://github.com/MeasureAuthoringTool/fhir-typescript-models/issues"
},
"homepage": "https://github.com/MeasureAuthoringTool/fhir-typescript-models#readme",
"directories": {
"test": "test"
}
}