-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 2.94 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
{
"name": "@ahryman40k/fhir-spec-loader",
"version": "4.0.11",
"description": "load spec from hl7.org/fhir or from local files",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib",
"build": "tsc",
"test": "jest --detectOpenHandles --forceExit --runInBand",
"publish-me": "npm version patch && tsc -p . && npm publish",
"s": "----------------------------------------------------------",
"fhir:spec:last:download": "mkdir -p ./FHIR_specs/R4/last && (cd ./FHIR_specs/R4/last && curl -LO http://build.fhir.org/definitions.json.zip && unzip ./definitions.json.zip )",
"fhir:spec:4.5.0:download": "mkdir -p ./FHIR_specs/R4/4.5.0 && (cd ./FHIR_specs/R4/4.5.0 && curl -LO http://hl7.org/fhir/2020Sep/definitions.json.zip && unzip ./definitions.json.zip )",
"fhir:spec:4.4.0:download": "mkdir -p ./FHIR_specs/R4/4.4.0 && (cd ./FHIR_specs/R4/4.4.0 && curl -LO http://hl7.org/fhir/2020May/definitions.json.zip && unzip ./definitions.json.zip )",
"fhir:spec:4.2.0:download": "mkdir -p ./FHIR_specs/R4/4.2.0 && (cd ./FHIR_specs/R4/4.2.0 && curl -LO http://hl7.org/fhir/2020Feb/definitions.json.zip && unzip ./definitions.json.zip )",
"fhir:spec:4.0.1:download": "mkdir -p ./FHIR_specs/R4/4.0.1 && (cd ./FHIR_specs/R4/4.0.1 && curl -LO https://www.hl7.org/fhir/definitions.json.zip && unzip ./definitions.json.zip )",
"fhir:spec:3.5.0:download": "mkdir -p ./FHIR_specs/R4/3.5.0 && (cd ./FHIR_specs/R4/3.5.0 && curl -LO http://hl7.org/fhir/2018Sep/definitions.json.zip && unzip ./definitions.json.zip )",
"fhir:spec:3.3.0:download": "mkdir -p ./FHIR_specs/R4/3.3.0 && (cd ./FHIR_specs/R4/3.3.0 && curl -LO http://hl7.org/fhir/2018May/definitions.json.zip && unzip ./definitions.json.zip )",
"fhir:spec:3.2.0:download": "mkdir -p ./FHIR_specs/R4/3.2.0 && (cd ./FHIR_specs/R4/3.2.0 && curl -LO http://hl7.org/fhir/2018Jan/definitions.json.zip && unzip ./definitions.json.zip )",
"fhir:spec:install": "npm run fhir:spec:4.5.0:download && npm run fhir:spec:4.4.0:download && npm run fhir:spec:4.2.0:download && npm run fhir:spec:4.0.1:download && npm run fhir:spec:3.5.0:download && npm run fhir:spec:3.3.0:download && npm run fhir:spec:3.2.0:download && npm run fhir:spec:last:download"
},
"repository": {
"type": "git",
"url": "[email protected]:Ahryman40k/fhir-spec-loader.git"
},
"author": "Geoffrey BAUDIN",
"license": "GPLv3",
"dependencies": {
"@ahryman40k/ts-fhir-types": "^4.0.34",
"download": "^8.0.0",
"io-ts": "^2.2.16",
"lodash": "^4.17.21",
"tmp": "^0.2.1",
"unzipper": "^0.10.11"
},
"devDependencies": {
"@types/download": "^6.2.4",
"@types/jest": "^26.0.21",
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.35",
"@types/tmp": "^0.2.0",
"@types/unzipper": "^0.10.3",
"codecov": "^3.8.1",
"jest": "^26.6.3",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.4",
"typescript": "^4.2.3"
},
"snyk": true
}