-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
49 lines (49 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
{
"name": "@rimiti/hl7-object-parser",
"version": "2.9.0",
"description": "Node hl7 object parser",
"license": "MIT",
"main": "dist/lib/parser.js",
"scripts": {
"build": "babel src/ -d dist/ --copy-files --source-maps inline",
"build:watch": "babel src/ -d dist/ --watch --copy-files --source-maps inline",
"test": "jest --coverage",
"prepublishOnly": "yarn test && yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rimiti/hl7-object-parser.git"
},
"keywords": [
"node",
"hl7",
"parser",
"decoder",
"encoder"
],
"author": {
"name": "Dimitri DO BAIRRO",
"email": "[email protected]",
"url": "dimsolution.com"
},
"bugs": {
"url": "https://github.com/rimiti/hl7-object-parser/issues"
},
"homepage": "https://github.com/rimiti/hl7-object-parser#readme",
"dependencies": {
"simple-hl7": "^2.2.1"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"jest": "^24.1.0"
},
"jest": {
"testEnvironment": "node",
"moduleFileExtensions": [
"js",
"json"
]
}
}