-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.43 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.43 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "fhir-package-loader",
"version": "2.2.4",
"description": "JavaScript package for downloading and accessing FHIR definitions",
"scripts": {
"build": "tsc",
"build:watch": "tsc -w",
"test": "jest --coverage",
"test:watch": "npm run test -- --watchAll",
"coverage": "opener coverage/lcov-report/index.html",
"lint": "tsc && eslint \"**/*.{js,ts}\"",
"lint:fix": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix",
"prettier": "prettier --check \"**/*.{js,ts}\"",
"prettier:fix": "prettier --write \"**/*.{js,ts}\"",
"check": "npm run test && npm run lint && npm run prettier",
"prepare": "npm run build"
},
"contributors": [
"Julia Afeltra <jafeltra@mitre.org>",
"Julian Carter <jacarter@mitre.org>",
"Nick Freiter <nfreiter@mitre.org>",
"Chris Moesel <cmoesel@mitre.org>",
"Mint Thompson <mathompson@mitre.org>",
"Guhan B. Thuran <gthuran@mitre.org>"
],
"repository": {
"type": "git",
"url": "https://github.com/FHIR/fhir-package-loader.git"
},
"license": "Apache-2.0",
"main": "dist/index.js",
"bin": {
"fpl": "dist/app.js"
},
"types": "dist/index.d.ts",
"files": [
"dist/**/*.{js,json,d.ts}"
],
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@ianvs/prettier-plugin-sort-imports": "^4.7.1",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^30.0.0",
"@types/lodash": "^4.17.24",
"@types/node": "^22.19.15",
"@types/opener": "^1.4.3",
"@types/semver": "^7.7.1",
"@types/sql.js": "^1.4.9",
"@types/tar-stream": "^3.1.4",
"@types/temp": "^0.9.4",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"fake-indexeddb": "^6.2.5",
"jest": "^30.2.0",
"jest-extended": "^7.0.0",
"jest-mock-extended": "^4.0.0-beta1",
"nock": "^14.0.11",
"opener": "^1.5.2",
"prettier": "^3.8.1",
"ts-jest": "^29.3.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"dependencies": {
"axios": "^1.13.6",
"chalk": "^4.1.2",
"commander": "^13.1.0",
"fhir-tool": "^5.0.2",
"fs-extra": "^11.3.4",
"https-proxy-agent": "^7.0.6",
"lodash": "^4.17.21",
"mnemonist": "^0.40.3",
"semver": "^7.6.3",
"sql.js": "^1.14.1",
"tar": "^7.4.3",
"tar-stream": "^3.1.8",
"temp": "^0.9.1",
"winston": "^3.19.0"
}
}