-
-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathpackage.json
77 lines (77 loc) · 2.83 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
{
"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": "git+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.2.1",
"commander": "2.13.0",
"jszip": "3.1.5",
"pako": "1.0.6",
"plotly.js": "1.33.1",
"shelljs": "0.7.8",
"vtk.js": "5.15.14",
"wslink": "0.1.4"
},
"devDependencies": {
"monologue.js": "0.3.5",
"mout": "1.1.0",
"react": "16.2.0",
"react-dom": "16.2.0",
"d3": "3.5.17",
"axios": "0.17.1",
"gl-matrix": "2.3.1",
"hammerjs": "2.0.8",
"font-awesome": "4.7.0",
"kw-web-suite": "5.0.1",
"kw-doc": "1.1.1",
"babel-plugin-istanbul": "4.1.5",
"karma": "2.0.0",
"karma-chrome-launcher": "2.2.0",
"karma-coverage": "1.1.1",
"karma-electron": "5.2.2",
"karma-tap": "4.1.0",
"karma-tap-pretty-reporter": "3.0.5",
"karma-webpack": "2.0.9",
"electron": "1.7.11",
"resemblejs": "2.7.0",
"tap-spec": "4.1.1",
"tap-markdown": "1.2.1",
"tape": "4.8.0",
"tape-catch": "1.0.6",
"tonic-arctic-sample-data": "http://www.paraview.org/files/dependencies/tonic-arctic-sample-data-1.2.2.tgz"
},
"scripts": {
"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 commitizen@2.5.0",
"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 --colors",
"build:release": "webpack --progress --colors -p",
"test": "karma start karma.conf.js",
"test:travis": "karma start karma.conf.js --browsers Electron --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"
}
}