-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
38 lines (38 loc) · 953 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": "mllp-node",
"version": "2.0.0",
"description": "MLLP (HL7) implementation in Node.js",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Dmitry Kachaev <[email protected]> (http://github.com/kachok)",
"repository": {
"type": "git",
"url": "[email protected]:amida-tech/mllp.git"
},
"bugs": {
"url": "https://github.com/amida-tech/mllp/issues"
},
"license": "Apache-2.0",
"devDependencies": {
"grunt": "1.0.x",
"grunt-contrib-jshint": "1.1.x",
"grunt-contrib-watch": "1.1.x",
"grunt-mocha-test": "0.13.x",
"grunt-jsbeautifier": "^0.2.x",
"mocha": "5.2.x",
"chai": "4.1.x",
"chai-datetime": "1.5.x",
"grunt-coveralls": "*",
"grunt-istanbul-coverage": "*",
"coveralls": "3.0.x",
"mocha-lcov-reporter": "1.3.x"
},
"engines": {
"node": "8.x.x"
},
"dependencies": {
"hl7": "1.x.x"
}
}