-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.49 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
{
"name": "fhir-spec-tools",
"version": "0.2.0",
"description": "Scripts and other shared tooling for working with the HL7® FHIR® standard",
"main": "build/index.js",
"files": [
"build/data/*",
"build/index.js",
"build/index.d.ts",
"build/scripts/types/"
],
"types": "build/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/projecttacoma/fhir-spec-tools.git"
},
"devDependencies": {
"@types/fhir": "^0.0.41",
"@types/xml2js": "^0.4.14",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.5.3",
"xml2js": "^0.6.2"
},
"scripts": {
"build": "tsc",
"build:choice-types": "ts-node src/scripts/parseChoiceTypesForResource.ts",
"build:mandatory-elements": "ts-node src/scripts/parseMandatoryElements.ts",
"build:patient-paths": "ts-node src/scripts/parseCompartmentDefinition.ts",
"build:code-systems": "ts-node src/scripts/parseCodeSystems.ts && prettier --write src/data/systemMap.ts --log-level silent",
"build:codes": "ts-node src/scripts/parseCodePath.ts && prettier --write src/data/codePaths.ts --log-level silent",
"build:dates": "ts-node src/scripts/parsePrimaryDatePath.ts && prettier --write src/data/primaryDatePaths.ts --log-level silent",
"build:date-search-parameters": "ts-node src/scripts/parseDateSearchParam.ts && prettier --write src/data/dateSearchParameters.ts --log-level silent",
"build:properties": "ts-node src/scripts/parseProperties.ts && prettier --write src/data/propertyPaths.ts --log-level silent",
"build:search-parameters": "ts-node src/scripts/parseSearchParams.ts && prettier --write src/data/searchParameters.ts --log-level silent",
"prettier": "prettier --check \"**/*.{js,ts}\"",
"prettier:fix": "prettier --write \"**/*.{js,ts}\"",
"lint": "eslint .",
"check": "npm run lint && npm run prettier"
},
"contributors": [
{
"name": "Lauren DiCristofaro",
"email": "[email protected]"
},
{
"name": "Chris Hossenlopp",
"email": "[email protected]"
},
{
"name": "Elsa Perelli",
"email": "[email protected]"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/projecttacoma/fhir-spec-tools/issues"
},
"homepage": "https://github.com/projecttacoma/fhir-spec-tools#readme",
"dependencies": {
"@eslint/js": "^9.6.0",
"@types/eslint__js": "^8.42.3",
"eslint": "^8.57.0",
"typescript-eslint": "^7.16.0",
"eslint-config-prettier": "^9.1.0"
}
}