-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
72 lines (72 loc) · 2.09 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
{
"name": "fhir-package-loader",
"version": "1.0.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": {
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.11",
"@types/lodash": "^4.14.202",
"@types/node": "^20.11.10",
"@types/opener": "^1.4.3",
"@types/semver": "^7.5.6",
"@types/tar": "^6.1.11",
"@types/temp": "^0.9.4",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"jest-extended": "^4.0.2",
"opener": "^1.5.2",
"prettier": "^3.2.4",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"axios": "^1.6.7",
"chalk": "^4.1.2",
"commander": "^11.1.0",
"fs-extra": "^11.2.0",
"https-proxy-agent": "^7.0.2",
"lodash": "^4.17.21",
"semver": "^7.5.4",
"tar": "^6.2.0",
"temp": "^0.9.1",
"winston": "^3.11.0"
}
}