This repository has been archived by the owner on Sep 4, 2024. It is now read-only.
forked from Vermonster/fhir-kit-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.51 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
{
"name": "@tellu/fhir-kit-client",
"version": "2.2.0",
"description": "FHIR Client",
"keywords": [
"FHIR",
"SMART",
"CDS Hooks",
"HL7"
],
"main": "lib/client.js",
"types": "index.d.ts",
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"docs": "rm -rf ./docs && jsdoc --configure .jsdoc.json",
"lint": "eslint .",
"test": "mocha test --reporter spec",
"coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"coveralls:report": "nyc --reporter=lcov --reporter=text-lcov npm test"
},
"author": "Vermonster",
"license": "MIT",
"files": [
"LICENSE",
"README.md",
"lib/",
"index.d.ts"
],
"repository": {
"type": "git",
"url": "https://github.com/TelluIoT/fhir-kit-client.git"
},
"devDependencies": {
"chai": "^4.3.6",
"coveralls": "^3.1.1",
"eslint": "^8.22.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-unicorn": "^43.0.2",
"jsdoc": "^3.6.7",
"minami": "^1.2.3",
"mocha": "^9.1.3",
"mocha-lcov-reporter": "^1.3.0",
"nock": "^13.1.4",
"nyc": "^15.1.0"
},
"dependencies": {
"abort-controller": "^3.0.0",
"agentkeepalive": "^4.1.4",
"debug": "^4.3.2",
"es6-promise": "^4.2.8",
"got": "^11.8.5",
"json-stringify-safe": "^5.0.1",
"query-string": "^7.0.1",
"universal-url": "^2.0.0"
},
"nyc": {
"exclude": [
"test/**",
"lib/logging.js"
]
}
}