forked from amida-tech/mllp
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.47 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
{
"name": "mllp-node-sl7",
"version": "2.1.4",
"description": "MLLP (HL7) implementation in Node.js",
"main": "src/index.js",
"types": "src/index.ts",
"scripts": {
"build": "tsc",
"test": "tsc && mocha",
"lint": "npx eslint src --ext ts --ignore-pattern \"src/**/*.d.ts\"",
"lint:fix": "npm run lint -- --fix"
},
"contributors": [
{
"name": "Dmitry Kachaev",
"email": "dmitry.kachaev@gmail.com",
"url": "http://github.com/kachok"
},
{
"name": "Alexander Drexler",
"email": "dx2308@googlemail.com",
"url": "http://github.com/tkalex"
}
],
"repository": {
"type": "git",
"url": "git@github.com:tka-lex/mllp.git"
},
"bugs": {
"url": "https://github.com/amida-tech/mllp/issues"
},
"license": "Apache-2.0",
"devDependencies": {
"@types/node": "^18.6.1",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"chai": "4.1.x",
"chai-datetime": "1.5.x",
"coveralls": "3.1.1",
"mocha": "^10.2.0",
"mocha-lcov-reporter": "1.3.x",
"typescript": "^4.7.4",
"eslint": "^8.43.0",
"prettier": "^2.8.8",
"eslint-config-airbnb": "^19.0.2",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^3.1.4"
},
"engines": {
"node": ">=8.x.x"
},
"dependencies": {
"iconv-lite": "^0.6.0",
"@sourceblock-ug/sb-sl7": "^2.0.17"
}
}