forked from ImagingDataCommons/dicom-microscopy-viewer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.38 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
{
"name": "dicom-microscopy-viewer",
"version": "0.20.0",
"description": "Interactive web-based viewer for DICOM Microscopy Images",
"main": "build/dicom-microscopy-viewer.js",
"scripts": {
"test": "npm run build && mochify",
"webdriver": "mochify --wd",
"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"
},
"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": {
"chai": "^4.2.0",
"mocha": "^5.2.0",
"mochify": "^6.6.0",
"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": "^2.9.0"
},
"dependencies": {
"dicomweb-client": "^0.5.2",
"mathjs": "^7.1.0",
"ol": "^6.3.1"
}
}