-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
56 lines (56 loc) · 1.22 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
{
"name": "hl7v2",
"description": "HL7 v2 parser, serializer, validator and tcp client/server for NodeJS",
"version": "0.14.0",
"author": "Panates Ltd.",
"contributors": [
"Eray Hanoglu <[email protected]>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/panates/hl7v2.git"
},
"keywords": [
"javascript",
"hl7",
"perser",
"serializer",
"server",
"client"
],
"dependencies": {
"errorex": "^2.3.2",
"iconv-lite": "^0.6.3",
"is-typedarray": "^1.0.0",
"putil-callable": "^1.1.1",
"putil-waterfall": "^2.1.1"
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"eslint": "^8.30.0",
"eslint-config-google": "^0.14.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0"
},
"engines": {
"node": ">=14.0"
},
"directories": {
"lib": "./lib"
},
"files": [
"LICENSE",
"README.md",
"lib/",
"index.js"
],
"nyc": {
"temp-dir": "./coverage/.nyc_output"
},
"scripts": {
"test": "mocha --require ./test/support/env --reporter spec --check-leaks test/",
"cover": "nyc --reporter html --reporter text npm run test",
"travis-cover": "nyc --reporter lcovonly npm run test"
}
}