-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
70 lines (70 loc) · 2.52 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "mpi-mediator",
"version": "v2.3.1",
"description": "An OpenHIM mediator to handle all interactions with an MPI component",
"main": "index.ts",
"scripts": {
"dev": "nodemon --config restart.json",
"start": "ts-node -r dotenv/config src/index.ts",
"format": "prettier --check --write '{src,tests}/**/*.ts'",
"lint": "eslint . --ext .ts,.js --fix",
"docker:build": "npm run build; docker build -t jembi/mpi-mediator:latest .",
"build": "npm install; tsc -p tsconfig.build.json",
"test:unit": "LOG_LEVEL='fatal' MODE='testing' mocha -r ts-node/register 'tests/unit/*.ts' --timeout 15000",
"test:cucumber": "CUCUMBER_DEFAULT_TIMEOUT=20000 MODE='testing' cucumber-js 'tests/cucumber/features/**/*.feature' --no-color --exit --logLevel='error' --require 'tests/cucumber/step-definitions/*.ts' --require-module 'ts-node/register' --require-module 'dotenv/config' dotenv_config_path=.env.test --format-options \"{\\\"snippetInterface\\\": \\\"async-await\\\"}\" --format summary --format progress-bar",
"test:prepare": "tests/docker/compose.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jembi/mpi-mediator.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jembi/mpi-mediator/issues"
},
"homepage": "https://github.com/jembi/mpi-mediator#readme",
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/cucumber": "^7.0.0",
"@types/express": "^4.17.14",
"@types/fhir": "^0.0.35",
"@types/jest": "^29.2.0",
"@types/mocha": "^10.0.0",
"@types/node": "^18.11.2",
"@types/node-fetch": "^2.6.2",
"@types/request": "^2.48.8",
"@types/rewire": "^2.5.28",
"@types/supertest": "^2.0.12",
"@types/tap": "^15.0.7",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"chai": "^4.3.6",
"cucumber": "^6.0.7",
"dotenv": "^16.0.3",
"eslint": "^8.28.0",
"mocha": "^10.1.0",
"nock": "^13.2.9",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"rewire": "^6.0.0",
"sinon": "^14.0.1",
"supertest": "^6.3.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.8.4"
},
"dependencies": {
"@types/sinon": "^10.0.13",
"date-fns": "^2.29.3",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"http-proxy-middleware": "^2.0.6",
"kafkajs": "^2.2.2",
"node-fetch": "^2.6.7",
"openhim-mediator-utils": "^0.2.4",
"pino": "^8.7.0",
"pino-pretty": "^9.1.1"
}
}