forked from Kitware/vtk-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.33 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
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "vtk.js",
"version": "0.0.0-semantically-release",
"description": "Visualization Toolkit for the Web",
"keywords": [
"3d",
"visualization",
"webgl",
"medical",
"scientific",
"vtk",
"paraview",
"geometry",
"point cloud",
"mesh",
"gl-vis",
"volume",
"graphics",
"paraviewweb"
],
"repository": {
"type": "git",
"url": "https://github.com/kitware/vtk-js.git"
},
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/kitware/vtk-js/issues"
},
"homepage": "https://github.com/kitware/vtk-js#readme",
"main": "./dist/vtk.js",
"dependencies": {
"base64-js": "1.2.1",
"blueimp-md5": "2.10.0",
"commander": "2.11.0",
"gl-matrix": "3.0.0",
"jszip": "3.1.4",
"pako": "1.0.6",
"seedrandom": "2.4.3",
"shelljs": "0.7.8",
"webvr-polyfill": "0.10.8",
"webworker-promise": "0.4.2",
"xmlbuilder": "9.0.7"
},
"devDependencies": {
"babel-plugin-istanbul": "5.1.1",
"dotenv": "^6.1.0",
"karma": "4.0.1",
"karma-chrome-launcher": "2.2.0",
"karma-coverage": "1.1.2",
"karma-firefox-launcher": "^1.1.0",
"karma-junit-reporter": "^1.2.0",
"karma-tap": "4.1.4",
"karma-tap-pretty-reporter": "4.1.0",
"karma-webpack": "3.0.5",
"kw-doc": "1.3.0",
"kw-web-suite": "8.0.0",
"node-pre-gyp": "0.11.0",
"resemblejs": "2.10.3",
"tap-markdown": "1.2.1",
"tap-spec": "5.0.0",
"tape": "4.9.1",
"tape-catch": "1.0.6",
"wslink": "0.1.8",
"xml2js": "0.4.19"
},
"peerDependencies": {
"wslink": "^0.1.8",
"shader-loader": "^1.3.1",
"worker-loader": "^2.0.0"
},
"scripts": {
"size": "size-limit --why --config ./webpack.config.js",
"validate": "prettier --config ./prettier.config.js --list-different \"Sources/**/*.js\" \"Examples/**/*.js\"",
"reformat": "prettier --config ./prettier.config.js --write \"Sources/**/*.js\" \"Examples/**/*.js\"",
"reformat-only": "prettier --single-quote --trailing-comma es5 --print-width 80 --arrow-parens always --write",
"doc": "kw-doc -c ./Documentation/config.js",
"doc:www": "npm t -- --single-run && kw-doc -c ./Documentation/config.js -s",
"doc:publish": "kw-doc -c ./Documentation/config.js -mp",
"example": "node ./Utilities/ExampleRunner/example-runner-cli.js -c ./Documentation/config.js",
"build": "webpack-dev-server --config webpack.dev.js",
"build:release": "webpack --config webpack.prod.js --progress --hide-modules",
"test": "karma start ./karma.conf.js",
"test:travis": "karma start ./karma.conf.js --browsers ChromeHeadlessNoSandbox --single-run",
"test:debug": "karma start ./karma.conf.js --no-single-run",
"test:firefox": "karma start ./karma.conf.js --browsers Firefox",
"test:firefox-debug": "karma start ./karma.conf.js --browsers Firefox --no-single-run",
"commit": "git cz",
"semantic-release": "semantic-release"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"size-limit": [
{
"path": "./Sources/index.js",
"limit": "200 KB"
}
],
"bin": {
"vtkDataConverter": "./Utilities/DataGenerator/convert-cli.js",
"xml2json": "./Utilities/XMLConverter/xml2json-cli.js"
},
"nyc": {
"include": [
"Sources/**/*.js"
],
"exclude": [
"Sources/**/test/*.js"
]
}
}