-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.65 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
{
"name": "fhir-crawler",
"version": "2.0.0",
"description": "Utility do download resources from a FHIR server",
"main": "index.js",
"engines": {
"node": ">=16"
},
"scripts": {
"test": "NODE_ENV=test nyc --reporter=lcov ts-mocha -p ./test/tsconfig.json ./test/*.test.ts --exit",
"test:watch": "NODE_ENV=test npm test -- -w --watch-files='src/*.ts' --watch-files='test/*.ts'",
"start": "ts-node --transpile-only src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smart-on-fhir/fhir-crawler.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/smart-on-fhir/fhir-crawler/issues"
},
"homepage": "https://github.com/smart-on-fhir/fhir-crawler#readme",
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/cli-color": "^2.0.2",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/fhir": "^0.0.36",
"@types/humanize-duration": "^3.27.1",
"@types/jsonwebtoken": "^9.0.1",
"@types/mime-types": "^2.1.1",
"@types/mocha": "^10.0.1",
"@types/node": "^20.4.2",
"@types/node-fetch": "^2.6.3",
"@types/node-jose": "^1.1.10",
"@types/prompt-sync": "^4.2.0",
"chai": "^4.3.7",
"cors": "^2.8.5",
"express": "^4.18.2",
"mocha": "^10.2.0",
"nock": "^13.3.2",
"nyc": "^15.1.0",
"ts-mocha": "^10.0.0"
},
"dependencies": {
"cli-color": "^2.0.3",
"commander": "^10.0.1",
"humanize-duration": "^3.28.0",
"jsonwebtoken": "^9.0.0",
"mime-types": "^2.1.35",
"node-fetch": "^2.6.9",
"node-jose": "^2.2.0",
"prompt-sync": "^4.2.0",
"ts-node": "^10.9.1"
}
}