-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 2.75 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
{
"name": "@doe-casl/verain-view",
"version": "0.0.0-semantically-release",
"description": "VeraInView is a standalone HTML file that can act as an application to visualize your VERAin XML files.",
"author": "Kitware, Inc.",
"repository": {
"type": "git",
"url": "git+https://github.com/CASL/VeraInView.git"
},
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/CASL/VeraInView/issues"
},
"homepage": "https://github.com/CASL/VeraInView#readme",
"main": "./dist/VeraInView.html",
"files": [
"dist/*",
"src/*",
"README.md",
"LICENSE"
],
"devDependencies": {
"vtk.js": "6.2.7",
"markdown-pdf": "9.0.0",
"@doe-casl/verain-view": "1.0.1",
"antd": "2.13.11",
"paraviewweb": "^3.2.0",
"react": "16.1.1",
"react-dom": "16.1.1",
"react-cursor-position": "2.4.1",
"react-tooltip": "3.5.0",
"kw-doc": "1.1.2",
"kw-web-suite": "6.0.2"
},
"scripts": {
"guide": "markdown-pdf -c ./Documentation/content/users_guide/ -f Legal -o ./Documentation/content/users_guide/VeraInViewer-UserGuide.pdf ./Documentation/content/users_guide/index.md",
"validate": "prettier --config ./prettier.config.js --list-different \"src/**/*.js\"",
"reformat": "prettier --config ./prettier.config.js --write \"src/**/*.js\"",
"reformat-only": "prettier --config ./prettier.config.js --write",
"doc": "kw-doc -c ./Documentation/config.js",
"doc:www": "kw-doc -c ./Documentation/config.js -s",
"doc:publish": "kw-doc -c ./Documentation/config.js -mp",
"build": "npm run build:vera",
"build:vera": "webpack --progress --colors --mode development --config webpack.vera.config.js",
"build:simput": "webpack --progress --colors --mode development --config webpack.simput.config.js",
"build:debug": "npm run build:debug:vera",
"build:debug:vera": "npm run build:vera -- --display-modules",
"build:debug:simput": "npm run build:simput -- --display-modules",
"build:release": "npm run build:release:vera",
"build:release:vera": "webpack --progress --colors --mode production --config webpack.vera.config.js",
"build:release:simput": "webpack --progress --colors --mode production --config webpack.simput.config.js",
"bundle": "inline-source --compress false --root ./dist ./dist/index.html ./dist/VeraInView.html",
"start": "webpack-dev-server --mode development --config webpack.vera.config.js",
"commit": "git cz",
"semantic-release": "semantic-release"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}