This repository was archived by the owner on Jul 30, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 188
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.27 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.27 KB
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
{
"name": "@kui-shell/webpack",
"version": "13.1.0",
"description": "Kui support for webpack clients",
"license": "Apache-2.0",
"author": "Nick Mitchell",
"homepage": "https://github.com/IBM/kui#readme",
"bugs": {
"url": "https://github.com/IBM/kui/issues/new"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IBM/kui.git"
},
"keywords": [
"kui",
"webpack",
"package"
],
"main": "webpack.config.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"webpack-stats": "npm run webpack-pre && webpack --json > /tmp/stats.json; npm run webpack-post",
"http-allocate-cert": "./bin/ssl.sh",
"http": "./bin/webpack-client.sh",
"watch": "webpack serve --progress"
},
"bin": {
"kui-build-webpack": "build.sh",
"kui-build-docker": "build-docker.sh",
"kui-run-webpack": "bin/webpack-client.sh",
"kui-watch-webpack": "bin/watch.sh"
},
"dependencies": {
"assert": "^2.0.0",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"compression-webpack-plugin": "^10.0.0",
"constants-browserify": "^1.0.0",
"copy-webpack-plugin": "^11.0.0",
"crypto-browserify": "^3.12.0",
"css-loader": "^6.7.3",
"css-minimizer-webpack-plugin": "^5.0.0",
"encoded-uint8array-loader": "^1.0.3",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"https-browserify": "^1.0.0",
"ignore-loader": "^0.1.2",
"mini-css-extract-plugin": "^2.7.5",
"node-loader": "^2.0.0",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"portable-url": "^0.3.6",
"process": "^0.11.10",
"raw-loader": "^4.0.2",
"require-all": "^3.0.0",
"sass": "^1.61.0",
"sass-loader": "^13.2.2",
"shebang-loader": "^0.0.1",
"source-map-loader": "^4.0.1",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"svg-url-loader": "^8.0.0",
"timers-browserify": "^2.0.12",
"tty-browserify": "^0.0.1",
"url-loader": "^4.1.1",
"util": "^0.12.5",
"webpack": "^5.78.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^5.2.1",
"webpack-shell-plugin-next": "^2.3.1",
"zip-webpack-plugin": "^4.0.1"
},
"kui": {
"headless": false,
"proxy": false
},
"publishConfig": {
"access": "public"
}
}