forked from Kitware/vtk-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (46 loc) · 1.55 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
{
"name": "vtk.js",
"version": "0.0.0-semantically-release",
"description": "Visualization Toolkit for the Web",
"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": "./Sources/index.js",
"dependencies": {
"commander": "2.9.0",
"shelljs": "0.5.3",
"gh-pages": "0.10.0"
},
"devDependencies": {
"pako": "1.0.1",
"gl-matrix": "2.3.1",
"hammerjs": "2.0.6",
"monologue.js": "0.3.4",
"mout": "0.11.1",
"kw-web-suite": "1.1.2",
"kw-doc": "1.0.4"
},
"scripts": {
"postinstall": "fix-kw-web-suite || true",
"install:global": "npm install -g [email protected]",
"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",
"build" : "webpack --progress --colors",
"build:release" : "export NODE_ENV=production && npm run build -- -p",
"commit" : "git cz",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"bin": {
"vtkDataConverter": "./Utilities/DataGenerator/convert-cli.js"
}
}