-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
97 lines (97 loc) · 3.1 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "dicom-microscopy-viewer",
"version": "0.47.2",
"license": "MIT",
"author": "ImagingDataCommons",
"homepage": "https://github.com/imagingdatacommons/dicom-microscopy-viewer#readme",
"description": "Interactive web-based viewer for DICOM Microscopy Images",
"bugs": {
"url": "https://github.com/imagingdatacommons/dicom-microscopy-viewer/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/imagingdatacommons/dicom-microscopy-viewer.git"
},
"keywords": [
"dicom",
"dcmjs",
"dicomweb",
"microscopy"
],
"main": "./src/dicom-microscopy-viewer.js",
"standard": {
"ignore": [
"/build/*",
"/docs/*",
"/examples/simple_viewer/scripts/metadata.js",
"/examples/simple_viewer/scripts/dicomdict.js",
"/src/annotations/_AnnotationManager.test.js",
"/src/annotations/markups/_MarkupManager.test.js",
"/src/dictionary.js",
"/src/__mocks__/*",
"/test/*"
],
"env": [
"jest"
]
},
"scripts": {
"test": "standard 'src/*.js' && jest --silent",
"build": "npm run webpack:bundle && npm run webpack:dynamic-import",
"prepublishOnly": "npm run build",
"generateStaticSite": "npm run build && cp -R ./dist ./examples",
"generateDocs": "jsdoc -c ./jsdoc_conf.json",
"fmt": "standard 'src/**/*.js' --fix",
"lint": "standard 'src/**/*.js'",
"clean": "rm -rf ./dist ./node_modules",
"clean:dist": "rm -rf ./dist",
"webpack:dynamic-import": "webpack --progress --config ./config/webpack/webpack-dynamic-import",
"webpack:bundle": "webpack --progress --config ./config/webpack/webpack-bundle",
"webpack:dynamic-import:watch": "webpack --progress --watch --config ./config/webpack/webpack-dynamic-import",
"webpack:watch": "webpack --progress --watch --config ./config/webpack/webpack-bundle"
},
"devDependencies": {
"@babel/core": "^7.17",
"@babel/plugin-proposal-object-rest-spread": "^7.14.7",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.16",
"@babel/runtime-corejs3": "^7.15.4",
"@webpack-cli/serve": "^1.5.2",
"babel-eslint": "10.1.0",
"babel-jest": "27.5",
"babel-loader": "^8.2.3",
"chai": "^4.3.4",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "9.0.1",
"core-js": "^3.17.2",
"css-loader": "^6.7.1",
"jest": "^27.5",
"jest-canvas-mock": "^2.3",
"jsdoc": "^4.0.2",
"open-cli": "^7.0.1",
"standard": "^17.0",
"terser-webpack-plugin": "^5.2.2",
"webpack": "^5.68",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.9",
"webpack-dev-server": "^4.9.0",
"worker-loader": "^3.0.8"
},
"dependencies": {
"@cornerstonejs/codec-charls": "^1.2.3",
"@cornerstonejs/codec-libjpeg-turbo-8bit": "^1.2.2",
"@cornerstonejs/codec-openjpeg": "^1.2.2",
"dicomweb-client": "^0.10.3",
"@cornerstonejs/codec-openjph": "^2.4.5",
"colormap": "^2.3",
"dcmjs": "^0.29.8",
"dicomicc": "^0.1",
"image-type": "^4.1",
"mathjs": "^11.2",
"ol": "^7.5.1",
"uuid": "^9.0"
},
"resolutions": {
"braces": "3.0.3"
}
}