-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
62 lines (62 loc) · 1.7 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
{
"name": "bulk-data-client",
"version": "1.1.4",
"description": "",
"main": "built/app.js",
"engines": {
"node": ">=15"
},
"scripts": {
"clean": "rm -rf ./built",
"build": "tsc",
"build:watch": "tsc --watch",
"test": "nyc --reporter=lcov ts-mocha -p ./test/tsconfig.json ./test/*.test.ts",
"test:watch": "npm test -- -w --watch-files='**/*.ts'",
"coverage": "nyc report",
"doc:watch": "rm -rf docs/api && typedoc --watch && touch docs/api/.nojekyll",
"doc": "rm -rf docs/api && typedoc && touch docs/api/.nojekyll"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smart-on-fhir/bulk-data-client.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/smart-on-fhir/bulk-data-client/issues"
},
"homepage": "https://github.com/smart-on-fhir/bulk-data-client#readme",
"dependencies": {
"@hapi/code": "^8.0.3",
"aws-sdk": "^2.987.0",
"colors": "^1.4.0",
"commander": "^8.1.0",
"got": "^11.8.6",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"node-jose": "^2.0.0",
"pdfjs-dist": "^2.9.359",
"prompt-sync": "^4.2.0",
"winston": "^3.8.2",
"zlib": "^1.0.5"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.14",
"@types/fhir": "0.0.34",
"@types/jsonwebtoken": "^8.5.5",
"@types/mocha": "^9.0.0",
"@types/node": "^18.11.11",
"@types/node-jose": "^1.1.8",
"@types/pdfjs-dist": "^2.7.4",
"@types/prompt-sync": "^4.1.1",
"cors": "^2.8.5",
"express": "^4.18.2",
"mocha": "^9.1.1",
"nyc": "^15.1.0",
"ts-mocha": "^10.0.0",
"typedoc": "^0.22.3",
"typescript": "^4.4.2"
}
}