-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
61 lines (61 loc) · 1.37 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
{
"name": "dcmjs-commands",
"version": "0.0.0",
"description": "Command Line Tools for dcmjs, dicomweb-client and dimse",
"type": "module",
"publishConfig": {
"access": "public"
},
"keywords": [
"DCMJS",
"DICOM",
"DICOMweb"
],
"author": "Bill Wallace <[email protected]>",
"engines": {
"node": ">=14.18.1",
"npm": ">=6.14.15",
"yarn": ">=1.22.4"
},
"repository": {
"type": "git",
"url": "https://github.com/wayfarer3130/dcmjs-commands"
},
"homepage": "https://github.com/wayfarer3130/dcmjs-commands#readme",
"license": "MIT",
"main": "src/index.js",
"directories": {
"src": "src",
"bin": "bin"
},
"files": [
"bin",
"src"
],
"bin": {
"dcmjs": "bin/dcmjs.js",
"dicomwebjs": "bin/dicomwebjs.js",
"dimsejs": "bin/dimsejs.js"
},
"scripts": {
"test": "jest --config ./jest.config.js",
"build": "echo \"No build yet\" && exit 0",
"link:exec": "npm install -g && npm link",
"lint": "npx eslint --color \"**/*.{js,mjs,cjs}\"",
"lint:fix": "npx eslint --fix --color \"**/*.{js,mjs,cjs}\""
},
"jest": {
"verbose": true
},
"dependencies": {
"commander": "^12.1.0",
"config-point": ">=0.5.1",
"dcmjs": "^0.29.5",
"dcmjs-dimse": "0.1.27",
"dicomweb-client": "0.8.4"
},
"devDependencies": {
"jest": "^29.7.0",
"must": "^0.13.4"
}
}