forked from jembi/hearth
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
78 lines (78 loc) · 2.69 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
71
72
73
74
75
76
77
78
{
"name": "hearth",
"version": "1.1.0",
"description": "Hearth, a home for FHIR. A fast FHIR-compliant server.",
"scripts": {
"start": "node lib/server.js",
"stop": "pkill -SIGINT Hearth",
"dev:start": "cross-env NODE_ENV='development' npm run start",
"test": "npm run test:code && npm -s run test:style",
"test:code": "cross-env NODE_ENV='test' tap -j1 --cov --no-check-coverage --reporter=list 'test/**/*.js'",
"test:these-files": "tap --reporter=spec",
"test:style": "standard -v | snazzy",
"test:fix": "standard --fix -v | snazzy",
"cov": "npm run test:code -- --coverage-report=lcov",
"cov:these-files": "tap --reporter=spec --coverage-report=lcov",
"test:upload-cov": "tap --coverage-report=lcov && codecov",
"test:load": "npm run test:load-create && npm run test:load-matching && npm run test:clean-db",
"test:load-matching": "cross-env NODE_ENV=test npm start -- --createIndexes & sleep 2 && artillery run -o artillery/load-matching.json test/load-tests/matching.yml && npm stop && artillery report artillery/load-matching.json",
"test:load-create": "cross-env NODE_ENV=test npm start -- --createIndexes & sleep 2 && artillery run -o artillery/load-create.json test/load-tests/create.yml && npm stop && artillery report artillery/load-create.json",
"test:clean-db": "mongo hearth-test --eval 'db.dropDatabase()'",
"licenses:generate": "license-checker --production --json --customPath license-format.json --relativeLicensePath --out licenses.json"
},
"dependencies": {
"async": "^2.6.1",
"atna-audit": "^1.0.1",
"body-parser": "^1.18.3",
"cors": "^2.8.1",
"express": "^4.16.3",
"express-xml-bodyparser": "^0.3.0",
"fhir": "^3.3.1",
"jsonwebtoken": "^8.2.2",
"lodash": "^4.17.10",
"moment": "^2.22.2",
"mongodb": "3.5.4",
"mongodb-queue": "^3.1.0",
"nconf": "^0.11.3",
"request": "^2.87.0",
"stdio": "^0.2.7",
"talisman": "^1.1.4",
"urijs": "^1.19.2",
"uuid": "^3.3.3",
"winston": "^2.4.2"
},
"devDependencies": {
"chalk": "^2.4.1",
"chance": "^1.1.3",
"codecov": "^3.8.3",
"cross-env": "^5.1.6",
"faker": "^4.1.0",
"glossy": "^0.1.7",
"libxmljs": "^0.19.7",
"license-checker": "^25.0.1",
"mustache": "^3.1.0",
"neo-async": "^2.5.1",
"sinon": "^7.5.0",
"snazzy": "^9.0.0",
"standard": "^16.0.4",
"tap": "^15.2.3"
},
"main": "server.js",
"directories": {
"test": "test"
},
"keywords": [
"FHIR",
"HL7",
"IHE",
"server"
],
"author": "Jembi Health Systems NPC",
"license": "MPL-2.0",
"resolutions": {
"lodash": "4.17.21",
"xmlbuilder": "9.0.7",
"libxmljs": "0.19.7",
"tar": "4.4.19"
}
}