-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.32 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
{
"name": "dcm2bq",
"version": "1.0.55",
"description": "Get the JSON representation of a DICOM part 10 file and optionally store it into Google Cloud Big Query for further analysis.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "mocha --colors --bail --timeout 30000",
"release": "release-it --ci",
"release-dryrun": "release-it --verbose --dry-run --ci"
},
"bin": {
"dcm2bq": "index.js"
},
"author": "Jason Klotzer",
"license": "Apache-2.0",
"dependencies": {
"@google-cloud/bigquery": "^7.9.1",
"@google-cloud/pubsub": "^4.9.0",
"@google-cloud/storage": "^7.14.0",
"ajv": "^8.17.1",
"commander": "^13.0.0",
"dicom-parser": "^1.8.21",
"express": "^4.21.2",
"express-json-validator-middleware": "^3.0.1",
"google-auth-library": "^9.15.0"
},
"devDependencies": {
"axios": "^1.7.9",
"glob": "^11.0.0",
"mocha": "^11.0.0",
"release-it": "^18.0.0"
},
"release-it": {
"github": {
"release": true
},
"npm": {
"publish": false
},
"hooks": {
"before:init": [
"npm test"
],
"after:release": [
"docker build . --tag jasonklotzer/dcm2bq:latest --tag jasonklotzer/dcm2bq:${version} --no-cache",
"docker push jasonklotzer/dcm2bq --all-tags"
]
}
}
}