forked from Kitware/visualizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (52 loc) · 1.53 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
{
"name": "pvw-visualizer",
"description": "ParaViewWeb based application Standalone application useful to load and explore InSitu/Batch data products.",
"license": "BSD-3-Clause",
"version": "0.0.0-semantically-release",
"main": "./src/app.js",
"repository": {
"type": "git",
"url": "https://github.com/Kitware/visualizer.git"
},
"dependencies": {
"commander": "2.9.0",
"open": "0.0.5",
"shelljs": "0.7.4"
},
"devDependencies": {
"monologue.js": "0.3.5",
"mout": "1.0.0",
"react": "15.3.2",
"react-dom": "15.3.2",
"gl-matrix": "2.3.2",
"hammerjs": "2.0.8",
"font-awesome": "4.6.3",
"normalize.css": "4.2.0",
"react-redux": "4.4.5",
"redux": "3.5.2",
"reselect": "2.5.3",
"kw-web-suite": "2.2.1",
"kw-doc": "1.0.15",
"paraviewweb": "2.3.2",
"vtk.js": "2.24.0"
},
"scripts": {
"build": "fix-autobahn && webpack",
"build:debug": "fix-autobahn && webpack --display-modules",
"build:release": "export NODE_ENV=production && fix-autobahn && webpack -p",
"doc" : "kw-doc -c ./documentation/config.js",
"doc:www" : "kw-doc -c ./documentation/config.js -s",
"doc:publish" : "kw-doc -c ./documentation/config.js -p",
"commit": "git cz",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"bin": {
"Visualizer": "./bin/pvw-visualizer-cli.js"
},
"preferGlobal": true,
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}