forked from lantanagroup/FHIR.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.76 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
{
"name": "fhir",
"version": "4.11.2",
"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": "[email protected]"
},
"license": "ISC",
"author": "Sean McIlvenna ([email protected])",
"contributors": [
{
"name": "Sean McIlvenna",
"email": "[email protected]"
}
],
"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",
"jsdoc": "^3.4.3",
"mocha": "^7.1.2",
"nyc": "^15.1.0",
"typedoc": "^0.21.6",
"typescript": "^4.3.5",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"yargs": "^3.25.0"
},
"scripts": {
"test": "./node_modules/.bin/mocha test/**/*.js",
"prepublish": "./node_modules/.bin/tsc & node profiles/packageProfiles.js & webpack --config webpack.config.js",
"docs": "./node_modules/.bin/typedoc -out ./docs -exclude node_modules ./",
"tsc": "tsc"
},
"bundleDependencies": [
"lodash",
"path",
"q",
"xml-js"
],
"files": [
"model/",
"profiles/types.json",
"profiles/valuesets.json",
"dist/bundle.js",
"*.js",
"*.d.ts"
]
}