-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
91 lines (91 loc) · 3.64 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
{
"name": "cornerstone-archive-image-loader",
"version": "0.15.00",
"description": "Cornerstone ImageLoader for zipped DICOMDIR archive",
"keywords": [
"DICOM",
"DICOMDIR",
"cornerstone",
"medical",
"imaging"
],
"author": "Chris Hafey",
"homepage": "https://github.com/chafey/cornerstoneWADOImageLoader",
"license": "MIT",
"contributors": [
{
"name": "Marco Barnig",
"homepage": "http://www.web3.lu",
"email": "[email protected]"
}
],
"main": "./dist/cornerstoneArchiveImageLoader.js",
"module": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/mbarnig/cornerstoneArchiveImageLoader.git"
},
"scripts": {
"eslint": "eslint -c .eslintrc.js src",
"eslint-quiet": "eslint -c .eslintrc.js --quiet src",
"eslint-fix": "eslint -c .eslintrc.js --fix src",
"clean": "npm run clean:dist && npm run clean:coverage",
"clean:dist": "shx rm -rf dist",
"clean:docs": "shx rm -rf documentation",
"clean:coverage": "shx rm -rf coverage",
"doc": "npm run doc:generate && opn documentation/index.html",
"doc:generate": "npm run clean:docs && jsdoc -c .jsdocrc",
"version": "node -p -e \"'export default \\'' + require('./package.json').version + '\\';'\" > src/version.js",
"build": "npm run clean:dist && npm run build:es6 && npm run build:codecs",
"build:es6": "npm run test && npm run version && npm run webpack && npm run doc:generate",
"build:codecs": "npm run concat:codecs && npm run uglify:codecs",
"webpack": "npm run webpack:prod && npm run webpack:dev",
"webpack:dev": "webpack --progress --config ./config/webpack/webpack-dev",
"webpack:prod": "webpack --progress --config ./config/webpack/webpack-prod",
"webpack:watch": "webpack --progress --debug --watch --config ./config/webpack",
"watch": "npm run clean && shx mkdir dist && npm run concat:codecs && npm run webpack:watch",
"start": "npm run webpack",
"test": "npm run test:phantom",
"test:watch": "karma start config/karma/karma-watch.js",
"test:phantom": "karma start config/karma/karma-phantom.js",
"test:chrome": "karma start config/karma/karma-chrome.js",
"test:firefox": "karma start config/karma/karma-firefox.js",
"test:all": "npm run test:phantom && npm run test:chrome && npm run test:firefox",
"concat:codecs": "concat -o ./dist/cornerstoneWADOImageLoaderCodecs.js ./codecs/charLS-FixedMemory-browser.js ./codecs/jpeg.js ./codecs/jpegLossless.js ./codecs/jpx.min.js ./codecs/openJPEG-FixedMemory.js ./codecs/pako.min.js",
"uglify:codecs": "uglifyjs --comments /^/\\*!/ --stats -o ./dist/cornerstoneWADOImageLoaderCodecs.min.js -- ./dist/cornerstoneWADOImageLoaderCodecs.js"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.2",
"babel-loader": "^6.4.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"chai": "^3.5.0",
"concat": "^1.0.3",
"coveralls": "^2.13.1",
"docdash": "^0.4.0",
"eslint": "^4.18.2",
"eslint-loader": "^1.7.1",
"istanbul-instrumenter-loader": "^2.0.0",
"jsdoc": "^3.4.3",
"karma": "^6.3.14",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-firefox-launcher": "^1.0.1",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-webpack": "^2.0.3",
"lodash": "^4.17.4",
"mocha": "^3.2.0",
"opn-cli": "^3.1.0",
"shx": "^0.2.2",
"uglify-js": "^3.0.7",
"webpack": "^2.4.1"
},
"dependencies": {
"cornerstone-core": "^0.12.2",
"cornerstone-dicom-parser-utf8": "^1.7.53",
"jquery": "^4.4.0",
"jszip": "^3.1.3"
}
}