-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.23 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
{
"name": "@wavemaker/wm-sspa-cli",
"version": "5.0.2",
"description": "A CLI to convert WaveMaker apps to Single-Spa compatible apps",
"main": "index.js",
"files": [
"/dist",
"./index.js"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --config webpack.config.prod.js",
"build:dev": "webpack --config webpack.config.dev.js",
"start": "npm run build && node ."
},
"keywords": [
"WaveMaker",
"CLI",
"Single-spa"
],
"bin": {
"wm-sspa-cli": "./index.js"
},
"author": "subodh.kumar@wavemaker.com",
"license": "ISC",
"dependencies": {
"chalk": "^3.0.0",
"clear": "^0.1.0",
"clui": "^0.3.6",
"figlet": "^1.2.4",
"inquirer": "^7.0.4",
"minimist": "^1.2.0",
"ncp": "^2.0.0",
"request": "^2.88.2",
"request-promise": "^4.2.5",
"rimraf": "^3.0.2"
},
"devDependencies": {
"brotli-webpack-plugin": "1.1.0",
"compression-webpack-plugin": "10.0.0",
"terser-webpack-plugin": "^5.3.10",
"webpack": "5.94.0",
"webpack-cli": "5.1.4",
"webpack-merge": "^6.0.1",
"webpack-node-externals": "3.0.0"
},
"engines": {
"node": "~22.11.0",
"npm": "~10.9.0"
},
"engineStrict": true
}