-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.41 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
{
"name": "openhim-mediator-file-queue",
"version": "4.1.0",
"description": "An async file queue for OpenHIM mediators",
"author": "Jembi Health Systems (https://github.com/jembi)",
"homepage": "https://github.com/jembi/openhim-mediator-file-queue",
"repository": {
"type": "git",
"url": "git://github.com/jembi/openhim-mediator-file-queue.git"
},
"bugs": {
"url": "https://github.com/jembi/openhim-mediator-file-queue/issues"
},
"scripts": {
"start": "node lib",
"test": "tap --cov test/tests.js test/test_worker.js test/test_openhim.js && jshint **/*.js",
"coverage": "tap test/tests.js test/test_worker.js test/test_openhim.js --cov --coverage-report=lcov"
},
"bin": {
"file-queue": "lib/index.js"
},
"engines": {
"node": ">=4"
},
"dependencies": {
"async": "^1.5.2",
"body-parser": "^1.18.3",
"express": "^4.16.3",
"express-remove-route": "^0.1.1",
"graceful-fs": "^4.1.11",
"mkdirp": "^0.5.0",
"mv": "^2.1.1",
"needle": "^0.10.0",
"openhim-mediator-utils": "^0.2.3",
"server-graceful-shutdown": "^0.1.2",
"type-is": "^1.6.16",
"winston": "^1.1.2"
},
"main": "index.js",
"directories": {
"test": "test"
},
"keywords": [
"openhim",
"mediator",
"async",
"file",
"queue"
],
"license": "MPL-2.0",
"devDependencies": {
"jshint": "^2.13.4",
"rewire": "^2.5.2",
"tap": "^12.6.5"
}
}