forked from Kitware/vtk-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 2.98 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": "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": "git+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": "2.5.1",
"jszip": "3.1.4",
"pako": "1.0.6",
"seedrandom": "2.4.3",
"shelljs": "0.7.8",
"webvr-polyfill": "0.10.5",
"webworker-promise": "0.4.1"
},
"devDependencies": {
"babel-plugin-istanbul": "4.1.5",
"karma": "1.7.1",
"karma-chrome-launcher": "2.2.0",
"karma-coverage": "1.1.1",
"karma-tap": "3.1.1",
"karma-tap-pretty-reporter": "3.0.5",
"karma-webpack": "2.0.4",
"kw-doc": "1.2.0",
"kw-web-suite": "6.1.0",
"resemblejs": "2.2.6",
"tap-markdown": "1.2.1",
"tap-spec": "4.1.1",
"tape": "4.8.0",
"tape-catch": "1.0.6",
"xml2js": "0.4.19"
},
"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 --progress --colors --mode development",
"build:debug": "webpack --progress --colors --display-modules --mode development",
"build:release": "webpack --progress --colors --mode production",
"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",
"commit": "git cz",
"semantic-release": "semantic-release"
},
"config": {
"commitizen": {
"path": "node_modules/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"
]
}
}