forked from Kitware/itk-vtk-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.49 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
{
"name": "itk-vtk-viewer",
"version": "0.0.0-semantically-release",
"description": "ITK/VTK Image Viewer",
"repository": {
"type": "git",
"url": "https://github.com/kitware/itk-vtk-viewer.git"
},
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/kitware/itk-vtk-viewer/issues"
},
"homepage": "https://github.com/kitware/itk-vtk-viewer#readme",
"main": "./dist/itkVtkViewer.js",
"dependencies": {
"@babel/polyfill": "^7.0.0",
"commander": "^2.17.1",
"css-element-queries": "^1.0.2",
"curry": "^1.2.0",
"express": "^4.16.4",
"itk": "^9.6.1",
"mobx": "^5.13.0",
"mousetrap": "^1.6.3",
"open": "^6.3.0",
"promise-file-reader": "^1.0.2",
"vtk.js": "^11.1.0"
},
"devDependencies": {
"@babel/preset-env": "^7.2.0",
"axios": "^0.19.0",
"babel-plugin-istanbul": "^5.1.0",
"babel-preset-mobx": "^2.0.0",
"copy-webpack-plugin": "^4.5.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.0",
"karma": "^4.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.1.0",
"karma-junit-reporter": "^1.2.0",
"karma-tap": "^4.1.3",
"karma-tap-pretty-reporter": "^4.0.0",
"karma-webpack": "2.0.13",
"kw-doc": "^1.3.0",
"kw-web-suite": "^8.0.0",
"prettier": "^1.10.2",
"resemblejs": "^3.1.0",
"tap-markdown": "^1.2.1",
"tap-spec": "^5.0.0",
"tape": "^4.8.0",
"tape-catch": "^1.0.6",
"webpack-dev-server": "^3.1.14",
"webpackbar": "^3.1.5",
"workbox-build": "^2.1.2",
"workbox-webpack-plugin": "^2.1.2",
"worker-loader": "^2.0.0"
},
"scripts": {
"doc": "kw-doc -c ./doc/config.js",
"doc:www": "kw-doc -c ./doc/config.js -s",
"doc:publish": "kw-doc -c ./doc/config.js -mp",
"build": "webpack --progress --colors --mode production",
"build:debug": "webpack --progress --colors --display-modules --mode development",
"build:release": "npm run build -- -p",
"bundle": "StandaloneHTML ./dist/index.html ./dist/ItkVtkViewer.html",
"commit": "git cz",
"start": "webpack-dev-server --mode development --content-base ./dist/ --watch-content-base",
"semantic-release": "semantic-release",
"test": "karma start ./karma.conf.js --browsers Chrome,Firefox",
"test:debug": "karma start ./karma.conf.js --no-single-run"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"bin": {
"itk-vtk-viewer": "./bin/itk-vtk-viewer-cli.js"
}
}