forked from Kitware/simput
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (76 loc) · 2 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
{
"name": "simput",
"description": "Provide a simple way to write input simulation files.",
"license": "BSD-3-Clause",
"version": "0.0.0-semantically-release",
"main": "./dist/Simput.js",
"engines": {
"node": ">=0.12.0",
"npm": ">=2.4.1"
},
"repository": {
"type": "git",
"url": "https://github.com/Kitware/simput.git"
},
"dependencies": {
"body-parser": "1.14.2",
"commander": "2.9.0",
"express": "4.13.4",
"open": "0.0.5",
"shelljs": "0.5.3",
"handlebars": "4.0.5",
"handlebars-loader": "1.1.4",
"babel-core": "6.6.0",
"babel-eslint": "5.0.0",
"babel-loader": "6.2.4",
"babel-polyfill": "6.6.1",
"babel-preset-es2015": "6.6.0",
"babel-preset-react": "6.5.0",
"eslint": "2.2.0",
"eslint-loader": "1.3.0",
"eslint-config-airbnb": "6.0.2",
"eslint-plugin-react": "4.1.0",
"autoprefixer": "6.3.3",
"css-loader": "0.23.1",
"expose-loader": "0.7.1",
"file-loader": "0.8.5",
"html-loader": "0.4.3",
"json-loader": "0.5.4",
"postcss-loader": "0.8.1",
"shader-loader": "1.1.4",
"style-loader": "0.13.0",
"svg-sprite-loader": "0.0.16",
"url-loader": "0.5.7",
"html-webpack-plugin": "2.9.0",
"node-libs-browser": "1.0.0",
"webpack": "1.12.14",
"webpack-dev-server": "1.14.1"
},
"devDependencies": {
"font-awesome": "4.5.0",
"monologue.js": "0.3.4",
"mout": "0.11.1",
"normalize.css": "3.0.3",
"react": "0.14.7",
"react-dom": "0.14.7",
"paraviewweb": "1.2.15",
"kw-web-suite": "1.0.7"
},
"scripts": {
"build": "webpack",
"build:watch": "webpack --watch",
"build:debug": "webpack --display-modules",
"build:release": "webpack -p",
"commit": "git cz",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"bin": {
"Simput": "./bin/simput-cli.js"
},
"preferGlobal": true,
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}