forked from chafey/dicomp10-to-dicomweb-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.87 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
{
"name": "@ohif/static-wado-js",
"version": "0.4.0",
"description": "Library to convert DICOMP10 to DICOMweb format. Original upstream: https://github.com/chafey/dicomp10-to-dicomweb-js",
"main": "src/index.js",
"directories": {
"doc": "docs"
},
"bin": {
"mkdicomweb": "bin/mkdicomweb.js",
"mkdicomwebdeduplicated": "bin/mkdicomwebdeduplicated.js",
"mkdicomwebdeduplicatedgroup": "bin/mkdicomwebdeduplicatedgroup.js",
"mkdicomwebinstances": "bin/mkdicomwebinstances.js",
"mkdicomwebstudy": "bin/mkdicomwebstudy.js",
"dicomwebscp": "bin/dicomwebscp.js",
"staticwadojs": "bin/mkdicomweb.js"
},
"scripts": {
"build": "echo 'Nothing to build' && exit 0",
"build:ci": "yarn run build",
"lint": "eslint src bin",
"lint:fix": "eslint src bin --fix",
"test": "git submodule update --init && mocha --recursive --trace-warnings --unhandled-rejections=strict",
"test:ci": "yarn run test"
},
"repository": {
"type": "git",
"url": "[email protected]:OHIF/static-wado-js.git"
},
"keywords": [
"DICOM",
"DICOMweb"
],
"author": [
"Chris Hafey <[email protected]>",
"Bill Wallace <[email protected]>"
],
"contributors": [
"Rodolfo Costa <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/OHIF/static-wado-js/issues"
},
"homepage": "https://github.com/OHIF/static-wado-js#readme",
"devDependencies": {
"eslint": "^8.8.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"mocha": "^9.1.3",
"semantic-release": "^19.0.2",
"must": "^0.13.4"
},
"dependencies": {
"@cornerstonejs/dicom-codec": "^0.1.2",
"commander": "^8.3.0",
"dcmjs-dimse": "^0.0.14",
"dicom-parser": "^1.8.13",
"hash-object": "^0.1.7",
"node-object-hash": "^2.3.10",
"object-hash": "^2.2.0"
}
}