forked from igoroctaviano/dicom-microscopy-viewer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 2.01 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
{
"name": "dicom-microscopy-viewer",
"version": "0.35.0-fuberlin",
"description": "Interactive web-based viewer for DICOM Microscopy Images",
"main": "./src/dicom-microscopy-viewer.js",
"standard": {
"env": [
"jest"
],
"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/*"
]
},
"scripts": {
"test": "standard && jest",
"start": "rollup -c -w",
"build": "rollup -c",
"prepublishOnly": "npm run build",
"watch": "rollup -c -w",
"generateStaticSite": "npm run build && cp -R ./build ./examples",
"generateDocs": "jsdoc -c ./jsdoc_conf.json",
"fmt": "standard 'src/*.js' --fix",
"lint": "standard 'src/*.js'",
"clean": "rm -rf ./build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mghcomputationalpathology/dicom-microscopy-viewer.git"
},
"keywords": [
"dicom",
"dcmjs",
"dicomweb",
"microscopy"
],
"author": "Markus D. Herrmann",
"license": "MIT",
"bugs": {
"url": "https://github.com/mghcomputationalpathology/dicom-microscopy-viewer/issues"
},
"homepage": "https://github.com/mghcomputationalpathology/dicom-microscopy-viewer#readme",
"devDependencies": {
"@babel/core": "7.13.8",
"@babel/preset-env": "7.13.9",
"babel-jest": "26.6.3",
"jest": "26.6.3",
"rollup": "0.63.2",
"rollup-plugin-commonjs": "8.3.0",
"rollup-plugin-json": "3.1.0",
"rollup-plugin-node-builtins": "2.1.2",
"rollup-plugin-node-resolve": "3.4.0",
"rollup-plugin-postcss": "^1.6.3",
"standard": "^16.0.3"
},
"dependencies": {
"dcmjs": "^0.19.0",
"dicomweb-client": "^0.8",
"image-type": "^4.1",
"mathjs": "^9.4",
"ol": "^6.9"
},
"config": {
"puppeteer_skip_chromium_download": false
}
}