-
-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
79 lines (79 loc) · 2.72 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": "paraviewweb",
"version": "0.0.0-semantically-release",
"description": "Web framework for building interactive visualization relying on VTK or ParaView to produce visualization data",
"repository": {
"type": "git",
"url": "https://github.com/kitware/paraviewweb.git"
},
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/kitware/paraviewweb/issues"
},
"homepage": "https://github.com/kitware/paraviewweb#readme",
"main": "./dist/ParaViewWeb.js",
"dependencies": {
"base64-js": "1.3.1",
"commander": "3.0.0",
"jszip": "3.2.2",
"pako": "1.0.10",
"readable-stream": "^3.6.0",
"shelljs": "0.8.3",
"stream-browserify": "3.0.0"
},
"devDependencies": {
"axios": "0.19.0",
"babel-plugin-istanbul": "4.1.6",
"d3": "3.5.17",
"eslint-plugin-import": "^2.17.2",
"font-awesome": "4.7.0",
"gl-matrix": "2.6.1",
"hammerjs": "2.0.8",
"karma": "6.3.2",
"karma-chrome-launcher": "3.1.0",
"karma-coverage": "2.0.3",
"karma-tap": "4.2.0",
"karma-tap-pretty-reporter": "4.2.0",
"karma-webpack": "5.0.0",
"kw-doc": "3.1.0",
"kw-web-suite": "11.1.0",
"monologue.js": "0.3.5",
"mout": "1.1.0",
"plotly.js": "1.49.2",
"postcss-preset-env": "^6.7.0",
"react": "16.9.0",
"react-dom": "16.9.0",
"tap-markdown": "1.2.1",
"tap-spec": "5.0.0",
"tape": "4.9.0",
"tape-catch": "1.0.6",
"tonic-arctic-sample-data": "http://www.paraview.org/files/dependencies/tonic-arctic-sample-data-1.2.2.tgz",
"vtk.js": "19.2.2",
"wslink": "1.0.6"
},
"scripts": {
"install": "./config/prebuild.sh",
"validate": "prettier --config ./prettier.config.js --list-different \"src/**/*.js\"",
"reformat": "prettier --config ./prettier.config.js --write \"src/**/*.js\"",
"reformat-only": "prettier --single-quote --trailing-comma es5 --print-width 80 --arrow-parens always --write",
"install:global": "npm install -g [email protected]",
"doc": "kw-doc -c ./documentation/config.js",
"doc:www": "kw-doc -c ./documentation/config.js -s",
"predoc:publish": "./tools/install-data/install-sample-data-cli.js",
"doc:publish": "kw-doc -c ./documentation/config.js -p",
"build": "webpack --progress --mode development --devtool source-map",
"build:release": "webpack --progress --mode production",
"test": "karma start karma.conf.js",
"test:travis": "karma start karma.conf.js --browsers ChromeHeadlessNoSandbox --single-run",
"commit": "git-cz",
"semantic-release": "semantic-release"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"bin": {
"pvw-html-data-bundle": "./tools/html-web-resource/bundle-html-cli.js"
}
}