-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
64 lines (64 loc) · 1.42 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
{
"name": "fhir-kit-client",
"version": "1.9.2",
"description": "FHIR Client",
"keywords": [
"FHIR",
"SMART",
"CDS Hooks",
"HL7"
],
"main": "lib/client.js",
"types": "types/index.d.ts",
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"docs": "rm -rf ./docs && jsdoc --configure .jsdoc.json",
"lint": "eslint .",
"test": "NODE_OPTIONS=--no-experimental-fetch mocha test --reporter spec && npx tsc --noEmit test/*.ts"
},
"author": "Vermonster",
"license": "MIT",
"files": [
"LICENSE",
"README.md",
"lib/",
"types/"
],
"repository": {
"type": "git",
"url": "https://github.com/Vermonster/fhir-kit-client.git"
},
"devDependencies": {
"@types/node": "^17.0.21",
"chai": "^4.3.6",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.24.2",
"jsdoc": "^3.6.11",
"minami": "^1.2.3",
"mocha": "^9.2.1",
"mocha-lcov-reporter": "^1.3.0",
"nock": "^13.2.9",
"nyc": "^15.1.0",
"typescript": "^4.6.2"
},
"dependencies": {
"node-abort-controller": "^3.0.1",
"agentkeepalive": "^4.2.1",
"cross-fetch": "^3.1.5",
"debug": "^4.3.3",
"es6-promise": "^4.2.4",
"json-stringify-safe": "^5.0.1",
"query-string": "^7.1.1"
},
"nyc": {
"exclude": [
"test/**",
"types/**",
"lib/logging.js"
]
}
}