-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
98 lines (98 loc) · 3.48 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
{
"name": "hpc-cloud",
"description": "Virtual platform for running simulations and visualization",
"license": "Apache-2.0",
"version": "0.9.0",
"main": "./lib/app.js",
"repository": {
"type": "git",
"url": "https://github.com/Kitware/HPCCloud.git"
},
"engines": {
"node": ">= 8",
"npm": ">= 5"
},
"dependencies": {
"commander": "2.13.0",
"open": "0.0.5",
"shelljs": "0.8.1",
"monologue.js": "0.3.5",
"mout": "1.1.0",
"react": "16.2.0",
"react-dom": "16.2.0",
"hammerjs": "2.0.8",
"font-awesome": "4.7.0",
"react-redux": "5.0.6",
"redux": "3.7.2",
"reselect": "3.0.1",
"react-router-dom": "4.2.2",
"query-string": "6.0.0"
},
"devDependencies": {
"svg-sprite-loader": "4.1.6",
"react-test-renderer": "16.2.0",
"wslink": "0.1.7",
"axios": "0.18.0",
"bootstrap": "3.3.7",
"karma": "2.0.0",
"karma-chrome-launcher": "2.2.0",
"karma-coverage": "1.1.1",
"karma-electron": "5.2.2",
"karma-tap": "4.1.0",
"karma-spec-reporter": "0.0.32",
"karma-webpack": "2.0.9",
"tap-spec": "4.1.1",
"tap-markdown": "1.2.1",
"tape": "4.8.0",
"tape-catch": "1.0.6",
"karma-jasmine": "1.1.1",
"karma-sourcemap-loader": "0.3.7",
"istanbul-instrumenter-loader": "0.2.0",
"jasmine": "3.1.0",
"redux-actions-assertions": "1.3.0",
"redux-thunk": "2.2.0",
"expect": "1.20.1",
"codecov.io": "0.1.6",
"paraviewweb": "3.1.2",
"pvw-visualizer": "3.1.10",
"vtk.js": "6.3.14",
"simput": "1.5.0",
"candela": "0.19.1",
"kw-doc": "1.1.1",
"kw-web-suite": "6.0.1"
},
"scripts": {
"validate": "prettier --config ./prettier.config.js --list-different \"src/**/*.js\"",
"reformat": "prettier --config ./prettier.config.js --write \"src/**/*.js\"",
"install:pyfr": "cp ./node_modules/simput/dist/types/pyfr.js ./dist/simput-pyfr.js",
"install:nwchem": "cp ./node_modules/simput/dist/types/nwchem.js ./dist/simput-nwchem.js",
"install:nwchem-neb": "cp ./node_modules/simput/dist/types/nwchem-neb.js ./dist/simput-nwchem-neb.js",
"install:openfoam": "cp ./node_modules/simput/dist/types/openfoam_tutorials.js ./dist/simput-openfoam-tutorials.js",
"install:openfoamw": "cp ./node_modules/simput/dist/types/openfoam-windtunnel.js ./dist/simput-openfoam-windtunnel.js",
"postinstall": "npm run install:pyfr && npm run install:nwchem && npm run install:nwchem-neb && npm run install:openfoam && npm run install:openfoamw",
"check": "node bin/version-check.js",
"doc": "kw-doc -c ./docs/config.js",
"doc:www": "kw-doc -c ./docs/config.js -s",
"doc:publish": "kw-doc -c ./docs/config.js -p",
"prebuild": "npm run check",
"build": "webpack --progress --colors --mode development",
"build:debug": "webpack --display-modules --mode development",
"build:release": "webpack --progress --colors --mode production",
"start": "webpack-dev-server --progress --open",
"test": "karma start test/karma.all.js",
"test:redux": "karma start test/karma.redux.js",
"test:component": "karma start test/karma.component.js",
"test:debug": "karma start test/karma.all.js --no-single-run --browsers Chrome",
"codecov": "cat coverage/lcov/lcov.info | ./node_modules/codecov.io/bin/codecov.io.js",
"commit": "git cz",
"semantic-release": "semantic-release"
},
"bin": {
"HPCCloud": "./bin/hpc-cloud-cli.js"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}