forked from Kitware/paraviewweb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (83 loc) · 3.11 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
92
93
94
95
96
97
98
99
100
101
{
"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",
"engines" : {
"npm" : ">=3.0.0",
"node": ">=4.0.0"
},
"main": "./dist/ParaViewWeb.js",
"dependencies": {
"autobahn": "0.9.6",
"when": "3.7.7",
"ws": "0.8.1",
"pako": "1.0.1",
"plotly.js": "1.14.0",
"jszip": "3.1.3",
"base64-js": "1.2.0",
"vtk.js": "2.24.0",
"commander": "2.9.0",
"shelljs": "0.7.4",
"gh-pages": "0.11.0"
},
"devDependencies": {
"monologue.js": "0.3.5",
"mout": "1.0.0",
"react": "15.3.1",
"react-dom": "15.3.1",
"d3": "3.5.17",
"axios": "0.14.0",
"gl-matrix": "2.3.1",
"hammerjs": "2.0.8",
"font-awesome": "4.5.0",
"normalize.css": "4.1.1",
"tonic-arctic-sample-data": "http://www.paraview.org/files/dependencies/tonic-arctic-sample-data-1.2.2.tgz",
"kw-web-suite": "2.2.1",
"kw-doc": "1.0.15",
"babel-plugin-istanbul": "2.0.0",
"babel-polyfill": "6.16.0",
"karma": "1.2.0",
"karma-chrome-launcher": "2.0.0",
"karma-coverage": "1.1.1",
"karma-electron": "4.1.0",
"karma-tap": "2.1.4",
"karma-tap-pretty-reporter": "1.1.0",
"karma-webpack": "1.8.0",
"electron": "1.3.4",
"resemblejs": "2.2.1",
"tap-spec": "4.1.1",
"tap-markdown": "1.2.1",
"tape": "4.6.0",
"tape-catch": "1.0.6"
},
"scripts": {
"install:global": "npm install -g [email protected]",
"bin:fix-autobahn" : "node ./tools/fix-autobahn/patch-autobahn-0.9.6-cli.js",
"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" : "npm run bin:fix-autobahn && webpack --progress --colors",
"build:release" : "npm run bin:fix-autobahn && (export NODE_ENV=production|| set NODE_ENV=production) && npm run build -- -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 pre && npm publish && semantic-release post"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"bin": {
"fix-autobahn": "./tools/fix-autobahn/patch-autobahn-0.9.6-cli.js",
"pvw-html-data-bundle": "./tools/html-web-resource/bundle-html-cli.js"
}
}