forked from jembi/openhim-core-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
132 lines (132 loc) · 3.78 KB
/
Copy pathpackage.json
File metadata and controls
132 lines (132 loc) · 3.78 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "openhim-core",
"description": "The OpenHIM core application that provides logging and routing of http requests",
"version": "7.0.2",
"main": "./lib/server.js",
"bin": {
"openhim-core": "./bin/openhim-core.js"
},
"license": "MPL-2.0",
"engines": {
"node": ">= 12.14 < 13 || >= 14.16 < 15"
},
"spec": {
"nodeVersion": ">= 2:12.14.0, nodejs < 2:13.0.0",
"requires": [
"nodejs"
],
"environment": {
"NODE_ENV": "production"
}
},
"scripts": {
"build": "npm run clean && babel src --out-dir lib -s",
"build:watch": "npm run build -- -w",
"clean": "rimraf lib/",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"prepare": "npm run build",
"migrate:metrics": "node lib/migrateMetrics.js",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "export $(cat .env.test | xargs) && cross-env nyc mocha --timeout 10000 --exit --require @babel/register test/setupTest.js test/**/*.js",
"test:unit": "cross-env NODE_ENV=test mocha --require @babel/register test/setupTest.js test/unit/**/*.js --watch",
"test:int": "export $(cat .env.test | xargs) && cross-env mocha --timeout 10000 --require @babel/register test/setupTest.js test/integration/**/*.js --watch",
"test:replica:set": "./test/resources/replica-set-test/setup.sh",
"test:replica:set:cleanup": "./test/resources/replica-set-test/tear-down.sh",
"test:seed": "node performance/seed.js",
"test:seed:ci": "npm run test:seed -- --quiet",
"start": "node lib/server.js",
"stop": "pkill -SIGINT Core",
"spec": "speculate"
},
"dependencies": {
"agenda": "^3.1.0",
"atna-audit": "1.0.1",
"axios": "^0.21.2",
"babel-polyfill": "6.26.0",
"basic-auth": "2.0.1",
"bcryptjs": "2.4.3",
"chokidar": "^3.5.2",
"cookie": "^0.4.1",
"forever-monitor": "^3.0.1",
"form-data": "^3.0.1",
"glossy": "0.1.7",
"handlebars": "^4.7.7",
"jsonwebtoken": "^8.5.1",
"kcors": "2.2.2",
"koa": "^2.13.0",
"koa-bodyparser": "^4.3.0",
"koa-compress": "^5.1.0",
"koa-route": "3.2.0",
"lodash": "^4.17.20",
"moment": "^2.29.1",
"moment-timezone": "^0.5.31",
"mongodb": "^3.7.0",
"mongodb-uri": "0.9.7",
"mongoose": "^5.13.9",
"mongoose-patch-history": "^2.0.0",
"nconf": "0.10.0",
"nodemailer": "^6.6.3",
"pem": "^1.14.4",
"raw-body": "^2.4.1",
"semver": "^7.3.2",
"ssl-root-cas": "1.3.1",
"uuid": "^8.3.1",
"winston": "^3.3.3",
"winston-mongodb": "^5.0.5",
"xml2js": "^0.4.23",
"xmldom": "^0.6.0",
"xpath": "0.0.32"
},
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@babel/register": "^7.15.3",
"codecov": "^3.8.3",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.1.0",
"faker": "^5.5.3",
"finalhandler": "^1.1.2",
"mocha": "^8.4.0",
"nyc": "^15.1.0",
"prettier": "^2.4.0",
"progress": "2.0.3",
"rewire": "^5.0.0",
"rimraf": "^3.0.2",
"serve-static": "^1.14.1",
"should": "13.2.3",
"sinon": "^9.2.4",
"speculate": "^2.1.1",
"standard": "^16.0.1",
"supertest": "^6.1.6"
},
"repository": {
"type": "git",
"url": "https://github.com/jembi/openhim-core-js.git"
},
"keywords": [
"openhim",
"hie",
"interoperability",
"tls",
"atna",
"openhie"
],
"author": "Jembi Health Systems NPC",
"bugs": {
"url": "https://github.com/jembi/openhim-core-js/issues"
},
"homepage": "http://openhim.org",
"nyc": {
"all": true,
"include": [
"src"
]
}
}