-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
106 lines (106 loc) · 3.19 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "node-hl7-client",
"version": "3.0.0",
"description": "A pure Node.js HL7 Client that allows for communication to a HL7 Broker/Server that can send properly formatted HL7 messages with ease.It can also parse and then you can extract message segments out.",
"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"
},
"./hl7": {
"types": "./lib/types/hl7.d.ts",
"import": "./lib/esm/hl7.js",
"require": "./lib/cjs/hl7.js",
"default": "./lib/cjs/hl7.js"
}
},
"typesVersions": {
"*": {
"hl7": [
"lib/types/hl7"
]
}
},
"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",
"build:watch:cjs": "tsc -p src/tsconfig.cjs.json -w",
"npm:lint": "npmPkgJsonLint .",
"format": "prettier --write 'pages/**/*.md' 'src/**/*.ts' '__tests__/**/*.ts'",
"lint": "npm run npm:lint && eslint | snazzy",
"lint:fix": "npm run npm:lint && eslint --fix | snazzy",
"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-client.git"
},
"keywords": [
"hl7",
"hl7-parser",
"hl7-client",
"hl7-builder",
"hl7-speffications",
"hl7-validation"
],
"author": "Shane Froebel",
"license": "MIT",
"bugs": {
"url": "https://github.com/Bugs5382/node-hl7-client/issues"
},
"homepage": "https://github.com/Bugs5382/node-hl7-client#readme",
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.9.0",
"@types/tcp-port-used": "^1.0.4",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"@vitest/coverage-v8": "^2.1.5",
"@vitest/ui": "^2.1.5",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.12.0",
"node-hl7-server": "^3.0.1-beta.1",
"npm-check-updates": "^17.1.11",
"npm-package-json-lint": "^8.0.0",
"portfinder": "^1.0.32",
"pre-commit": "^1.2.2",
"snazzy": "^9.0.0",
"tcp-port-used": "^1.0.2",
"ts-node": "^10.9.2",
"tsd": "^0.31.2",
"typedoc": "^0.26.11",
"typescript": "^5.6.3",
"typescript-eslint": "^8.14.0",
"vitest": "^2.1.5"
},
"precommit": [
"lint:fix",
"build"
]
}