-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
38 lines (38 loc) · 846 Bytes
/
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
{
"name": "nodengine-hl7",
"version": "4.1.8",
"description": "HL7 parser",
"main": "index.js",
"bin": {
"ne-hl7": "./bin/nodengine-hl7.js"
},
"dependencies": {
"help": "~2.0.0",
"nopt": "~2.1.2",
"npmlog": "0.0.6",
"split": "~0.3.0"
},
"devDependencies": {
"eslint": "~1.10.3",
"tap": "~5.4.2",
"through": "~2.3.4"
},
"scripts": {
"lint": "eslint *.js lib/**.js bin/**.js test/**.js",
"test": "npm run lint && tap test/*.js --cov"
},
"repository": {
"type": "git",
"url": "git://github.com/evanlucas/nodengine-hl7"
},
"keywords": [
"hl7",
"parser"
],
"author": "Evan Lucas <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/evanlucas/nodengine-hl7/issues"
},
"homepage": "https://github.com/evanlucas/nodengine-hl7"
}