-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
81 lines (81 loc) · 2.37 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
81
{
"name": "fhir-package-loader",
"version": "2.1.0",
"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 <[email protected]>",
"Julian Carter <[email protected]>",
"Nick Freiter <[email protected]>",
"Chris Moesel <[email protected]>",
"Mint Thompson <[email protected]>",
"Guhan B. Thuran <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/standardhealth/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": {
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.13",
"@types/node": "^20.17.8",
"@types/opener": "^1.4.3",
"@types/semver": "^7.5.6",
"@types/sql.js": "^1.4.9",
"@types/tar-stream": "^3.1.3",
"@types/temp": "^0.9.4",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"fake-indexeddb": "^6.0.0",
"jest": "^29.7.0",
"jest-extended": "^4.0.2",
"jest-mock-extended": "^4.0.0-beta1",
"nock": "^13.5.6",
"opener": "^1.5.2",
"prettier": "^3.4.1",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"dependencies": {
"axios": "^1.7.8",
"chalk": "^4.1.2",
"commander": "^12.1.0",
"fhir": "^4.12.0",
"fs-extra": "^11.2.0",
"https-proxy-agent": "^7.0.5",
"lodash": "^4.17.21",
"mnemonist": "^0.39.8",
"semver": "^7.6.3",
"sql.js": "^1.12.0",
"tar": "^7.4.3",
"tar-stream": "^3.1.7",
"temp": "^0.9.1",
"winston": "^3.17.0"
}
}