forked from Bugs5382/node-hl7-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.1 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 3.1 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "node-hl7-server",
"version": "3.3.0",
"description": "Node.js client library for creating a HL7 Server which can accept incoming a properly formatted HL7 message(s), and then parses the HL7 message. Once the message has been parsed you can then do something with the final result that you so desire.",
"module": "./lib/esm/index.js",
"main": "./lib/cjs/index.js",
"types": "./lib/types/index.d.ts",
"exports": {
".": {
"types": "./lib/types/index.d.ts",
"import": "./lib/esm/index.js",
"require": "./lib/cjs/index.js",
"default": "./lib/cjs/index.js"
}
},
"files": [
"lib/",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=20.15.0"
},
"scripts": {
"clean": "rm -rf coverage docs lib temp",
"build": "tsc -p src/tsconfig.esm.json && tsc -p src/tsconfig.cjs.json && tsc -p src/tsconfig.types.json && ./bin/build-types.sh",
"build:watch": "tsc -p src/tsconfig.esm.json -w",
"docker:build": "docker build -t docker-node-hl7-server:latest .",
"format": "prettier --write 'src/**/*.ts' '__tests__/**/*.ts'",
"lint": "npm run lint:npm && eslint | snazzy",
"lint:fix": "npm run lint:npm && eslint --fix | snazzy",
"lint:npm": "npmPkgJsonLint .",
"pack": "npm pack",
"prepublishOnly": "npm run clean && npm run build && npm run pack",
"test": "vitest run",
"test:verbose": "vitest run --reporter verbose",
"test:watch": "vitest watch",
"test:coverage": "vitest --coverage",
"typedoc": "typedoc",
"typedoc:watch": "typedoc -watch",
"update": "npx npm-check-updates -u --enginesNode && npm run update:post-update",
"update:post-update": "npm install && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bugs5382/node-hl7-server.git"
},
"keywords": [
"hl7",
"hl7-parser",
"hl7-client",
"hl7-server",
"hl7-builder",
"hl7-speffications",
"hl7-validation"
],
"author": "Shane Froebel",
"license": "MIT",
"bugs": {
"url": "https://github.com/Bugs5382/node-hl7-server/issues"
},
"homepage": "https://github.com/Bugs5382/node-hl7-server#readme",
"devDependencies": {
"@eslint/js": "^9.24.0",
"@shipgirl/typedoc-plugin-versions": "^0.3.0",
"@types/node": "^22.14.1",
"@types/tcp-port-used": "^1.0.4",
"@typescript-eslint/eslint-plugin": "^8.29.1",
"@typescript-eslint/parser": "^8.29.1",
"@vitest/coverage-v8": "^3.1.1",
"@vitest/ui": "^3.1.1",
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-prettier": "^5.2.6",
"globals": "^16.0.0",
"npm-check-updates": "^17.1.18",
"npm-package-json-lint": "^8.0.0",
"npm-package-json-lint-config-default": "^7.0.1",
"portfinder": "^1.0.35",
"pre-commit": "^1.2.2",
"snazzy": "^9.0.0",
"tcp-port-used": "^1.0.2",
"ts-node": "^10.9.2",
"tsd": "^0.32.0",
"typedoc": "^0.28.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.29.1",
"vitest": "^3.1.1"
},
"dependencies": {
"node-hl7-client": "^3.0.0"
},
"precommit": [
"format",
"lint:fix",
"build"
]
}