-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.64 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
{
"name": "@openfn/language-fhir-fr",
"label": "FHIR-FR",
"version": "1.1.1",
"description": "OpenFn fhir-fr adaptor",
"scripts": {
"build": "pnpm clean && build-adaptor fhir-fr src ast docs",
"build:src": "pnpm generate-fhir fhir-fr",
"build:spec": "pnpm generate-fhir fhir-fr --respec",
"test": "mocha --experimental-specifier-resolution=node --no-warnings",
"test:watch": "mocha -w --experimental-specifier-resolution=node --no-warnings",
"clean": "rimraf dist docs",
"pack": "pnpm pack --pack-destination ../../dist",
"lint": "eslint src"
},
"author": "Open Function Group",
"license": "LGPLv3",
"type": "module",
"fhir": {
"name": "hl7.fhir.fr.core",
"igVersion": "4.0.1",
"webUrl": "https://hl7.fr/ig/fhir/core",
"specDate": "2024-03-25",
"specUrl": "https://hl7.fr/ig/fhir/core/2.0.0/definitions.json.zip",
"adaptorGeneratedDate": "2024-12-01T15:19:38.395Z",
"generatorVersion": "0.2.1"
},
"dependencies": {
"@openfn/language-common": "workspace:*"
},
"devDependencies": {
"assertion-error": "2.0.0",
"chai": "4.3.6",
"deep-eql": "4.1.1",
"mocha": "^10.7.3",
"rimraf": "3.0.2",
"typescript": "4.8.4",
"undici": "^7.28.0"
},
"repository": {
"type": "git",
"url": "https://github.com/openfn/adaptors.git"
},
"types": "types/index.d.ts",
"main": "dist/index.cjs",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./types/index.d.ts",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"files": [
"dist/",
"types/",
"ast.json",
"configuration-schema.json"
]
}