-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.49 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.49 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
{
"name": "nodehl7",
"version": "2.0.0",
"description": "NodeJS Library for parsing HL7 Messages",
"main": "dist/hl7.js",
"module": "dist/esm/hl7.js",
"types": "dist/hl7.d.ts",
"exports": {
".": {
"import": "./dist/esm/hl7.js",
"require": "./dist/hl7.js",
"types": "./dist/hl7.d.ts"
}
},
"scripts": {
"build": "npm run build:cjs && npm run build:esm && npm run copy-segments",
"build:cjs": "tsc",
"build:esm": "tsc -p tsconfig.esm.json",
"copy-segments": "cp -r src/segments dist/ && cp -r src/segments dist/esm/",
"prepare": "npm run build",
"test": "npm run build && npx mocha",
"coverage": "npm run build && npx nyc --reporter=lcov --reporter=text --reporter=json npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Loksly/node-hl7.git"
},
"keywords": [
"nodejs",
"hl7"
],
"author": "Loksly",
"license": "MIT",
"bugs": {
"url": "https://github.com/Loksly/node-hl7/issues"
},
"homepage": "https://github.com/Loksly/node-hl7#readme",
"devDependencies": {
"@types/node": "^25.2.2",
"chai": "^6.2.2",
"mocha": "11.3.0",
"nyc": "^17.1.0",
"typescript": "^5.9.3"
},
"dependencies": {
"encoding": "^0.1.13"
},
"nyc": {
"include": [
"dist/**/*.js"
],
"exclude": [
"test/**",
"node_modules/**",
"src/**"
],
"reporter": [
"lcov",
"text",
"json"
],
"all": true,
"check-coverage": false
}
}