-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.43 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
{
"name": "openhim-mediator-mhero",
"version": "0.6.0",
"description": "This mediator synchronises data between the mHero systems.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "npm -s run test:code && npm -s run test:style",
"test:code": "tap --cov --reporter=spec tests/unit.js tests/integration.js tests/openinfoman-integration.js tests/rapidpro.js tests/rapidproCSDAdapter.js tests/openhim.js",
"test:style": "standard -v | snazzy",
"cov": "npm run test:code -- --coverage-report=lcov",
"test:watch": "onchange '**/*.js' -- npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jembi/openhim-mediator-mhero.git"
},
"keywords": [
"mhero",
"openhim",
"mediator"
],
"author": "Jembi",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/jembi/openhim-mediator-mhero/issues"
},
"homepage": "https://github.com/jembi/openhim-mediator-mhero#readme",
"dependencies": {
"array-unique": "^0.3.2",
"async": "1.5.2",
"express": "^4.13.4",
"lodash": "^4.11.1",
"moment": "^2.18.1",
"openhim-mediator-utils": "^0.2.2",
"request": "^2.71.0",
"underscore": "^1.8.3",
"urijs": "^1.17.1",
"winston": "^2.2.0",
"xmldom": "0.1.22",
"xpath": "0.0.23"
},
"devDependencies": {
"onchange": "^2.3.0",
"rewire": "^2.5.1",
"snazzy": "^3.0.1",
"standard": "^6.0.8",
"tap": "^5.7.1"
}
}