-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
43 lines (43 loc) · 972 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
39
40
41
42
43
{
"name": "hl7parser",
"description": "HL7 2.x parser and generator.",
"version": "1.0.1",
"author": {
"name": "Artifact Health, LLC",
"url": "http://www.artifacthealth.com"
},
"repository": {
"type": "git",
"url": "https://github.com/artifacthealth/hl7parser.git"
},
"licenses": [
{
"type": "Apache-2.0"
}
],
"main": "lib/index.js",
"typings": "lib/hl7parser.d.ts",
"scripts": {
"test": "grunt"
},
"devDependencies": {
"chai": "^1.9.2",
"grunt": "^0.4.5",
"grunt-baseline": "^0.1.7",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-concat": "^0.5.0",
"grunt-contrib-copy": "^0.7.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-dts-concat": "^0.1.10",
"grunt-mocha-test": "^0.12.2",
"grunt-ts-clean": "^0.2.0",
"grunt-typescript": "0.8.0",
"mocha": "^2.0.1"
},
"tonicExampleFilename": "example.js",
"keywords": [
"hl7",
"parser",
"generator"
]
}