-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 2.17 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
{
"name": "clinical-trial-matching-service",
"version": "0.1.2",
"description": "Provides a core library for interacting with the clinical-trial-matching-engine",
"homepage": "https://github.com/mcode/clinical-trial-matching-service",
"bugs": "https://github.com/mcode/clinical-trial-matching-service/issues",
"license": "Apache-2.0",
"author": "MITRE",
"contributors": [
"Daniel Potter",
"Nikhil Gaddam",
"Zach Lister",
"Lauren Levine",
"Robi Scalfani",
"Christine Duong"
],
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "mcode/clinical-trial-matching-service"
},
"scripts": {
"build": "npm run build:openapi && npm run build:ts",
"build:openapi": "openapi -c node -i ctg-oas-v2.yaml -o src/ctg-api --indent 2 --exportCore false --exportServices false",
"build:ts": "tsc",
"build:tests": "tsc --build tsconfig.test.json",
"coverage": "npm run-script build:tests && nyc --require ts-node/register --reporter=lcovonly jasmine",
"coverage:html": "npm run-script build:tests && nyc --require ts-node/register --reporter=html jasmine",
"lint": "eslint . --ext .js,.ts",
"prepare": "npm run-script build",
"serve": "node dist/server.js",
"start": "npm run serve",
"test": "npm run-script build:tests && npm run-script test:run",
"test:run": "jasmine"
},
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"node-fetch": "^2.7.0"
},
"optionalDependencies": {
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/express": "^4.17.17",
"@types/fhir": "^0.0.41",
"@types/jasmine": "^5.1.0",
"@types/mock-fs": "^4.13.0",
"@types/node": "^20.11.6",
"@types/node-fetch": "^2.6.6",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"eslint": "^8.57.0",
"jasmine": "^5.0.2",
"nock": "^13.0.4",
"nyc": "^15.1.0",
"openapi-typescript-codegen": "^0.29.0",
"source-map-support": "^0.5.19",
"supertest": "^7.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}