-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
80 lines (80 loc) · 1.87 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
{
"name": "fhir",
"version": "4.12.0",
"description": "Library that assists in handling FHIR resources. Supports serialization between JSON and XML, validation and FhirPath evaluation.",
"readme": "README.md",
"types": "index.d.ts",
"bugs": {
"url": "https://github.com/lantanagroup/FHIR.js/issues",
"email": "sean.mcilvenna@lantanagroup.com"
},
"license": "ISC",
"author": "Sean McIlvenna (sean.mcilvenna@lantanagroup.com)",
"contributors": [
{
"name": "Sean McIlvenna",
"email": "sean.mcilvenna@lantanagroup.com"
}
],
"keywords": [
"fhir",
"healthcare",
"interoperability",
"xml",
"json",
"serialization",
"hl7",
"standards",
"clinical"
],
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/lantanagroup/FHIR.js/"
},
"directories": {
"test": "test"
},
"dependencies": {
"lodash": "^4.17.19",
"path": "^0.12.7",
"q": "^1.4.1",
"randomatic": "^3.1.0",
"xml-js": "^1.6.8"
},
"devDependencies": {
"@types/node": "^14.0.3",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"eslint": "^8.33.0",
"jsdoc": "^3.4.3",
"mocha": "^7.1.2",
"nyc": "^15.1.0",
"typedoc": "^0.21.6",
"typescript": "^4.3.5",
"webpack": "^5.87.0",
"webpack-cli": "^5.1.4",
"yargs": "^3.25.0"
},
"scripts": {
"test": "mocha test/**/*.js",
"prepare": "tsc & eslint . --ext .ts --fix & node profiles/packageProfiles.js & webpack --config webpack.config.js",
"docs": "typedoc -out ./docs -exclude node_modules ./",
"tsc": "tsc",
"lint": "eslint . --ext .ts"
},
"bundleDependencies": [
"lodash",
"path",
"q",
"xml-js"
],
"files": [
"model/",
"profiles/types.json",
"profiles/valuesets.json",
"dist/bundle.js",
"*.js",
"*.d.ts"
]
}