forked from B-TECHBW/mllp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.16 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
{
"name": "@i-tech-uw/mllp-server",
"version": "3.3.1",
"description": "MLLP (HL7) implementation in Node.js",
"main": "lib/mllp.js",
"types": "lib/mllp.d.ts",
"files": [
"/lib",
"README.md",
"RELEASENOTES.md"
],
"scripts": {
"test": "mocha -r ts-node/register src/test/*.ts",
"clean": "rimraf lib/",
"build": "yarn clean && yarn tsc"
},
"author": "Piotr Mankowski [email protected]>",
"repository": {
"url": "git://github.com/i-tech-uw/mllp-server.git"
},
"bugs": {
"url": "https://github.com/i-tech-uw/mllp-server/issues"
},
"mocha": {
"require": [
"ts-node/register"
]
},
"license": "Apache-2.0",
"devDependencies": {
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.6",
"chai": "4.1.x",
"chai-datetime": "1.5.x",
"coveralls": "3.0.x",
"cross-env": "^7.0.3",
"mocha": "6.2.x",
"mocha-lcov-reporter": "1.3.x",
"rimraf": "^3.0.2",
"ts-mocha": "^8.0.0",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
},
"engines": {
"node": ">=14.x.x"
},
"dependencies": {
"hl7": "1.x.x",
"tiny-typed-emitter": "^2.1.0"
}
}