-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
120 lines (120 loc) · 3.01 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "@entando/entando-bundle-cli",
"version": "1.3.0-SNAPSHOT",
"description": "Entando Bundle CLI",
"author": "Entando",
"bin": {
"entando-bundle-cli": "./bin/run"
},
"homepage": "https://github.com/entando/entando-bundle-cli",
"license": "MIT",
"main": "dist/index.js",
"repository": "entando/entando-bundle-cli",
"files": [
"/bin",
"/dist",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"scripts": {
"copy:resources": "shx cp -r src/resources dist/resources",
"build": "shx rm -rf dist && tsc -b && npm run copy:resources && npm test",
"coverage": "nyc npm run test",
"lint": "eslint . --ext .ts --config .eslintrc",
"postpack": "shx rm -f oclif.manifest.json",
"posttest": "npm run lint",
"prepack": "npm run build && oclif manifest && oclif readme",
"manifest": "oclif manifest",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif readme && git add README.md",
"prepare": "husky install"
},
"engines": {
"node": ">=14.0.0"
},
"keywords": [
"oclif"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"types": "dist/index.d.ts",
"oclif": {
"bin": "entando-bundle-cli",
"dirname": "entando-bundle-cli",
"commands": "./dist/commands",
"plugins": [
"@oclif/plugin-help"
],
"topicSeparator": " ",
"topics": {
"mfe": {
"description": "Micro Frontend operations"
},
"ms": {
"description": "Microservice operations"
},
"api": {
"description": "Manage API claims"
},
"svc": {
"description": "Manage auxiliary services"
}
},
"hooks": {
"init": [
"./dist/hooks/init/cli-name-hook",
"./dist/hooks/init/version-hook"
]
}
},
"dependencies": {
"@oclif/color": "^1.0.1",
"@oclif/core": "1.7.0",
"@oclif/errors": "^1.3.5",
"@oclif/plugin-help": "5.1.12",
"axios": "^0.27.2",
"inquirer": "^8.2.4",
"semver": "^7.5.2",
"xml2js": "^0.5.0",
"yaml": "^2.2.2"
},
"devDependencies": {
"@oclif/test": "2.1.0",
"@types/chai": "4.3.1",
"@types/debug": "^4.1.7",
"@types/inquirer": "^8.2.1",
"@types/mocha": "9.1.0",
"@types/node": "17.0.25",
"@types/semver": "^7.5.0",
"@types/supports-color": "^8.1.1",
"@types/xml2js": "^0.4.11",
"@types/yaml": "^1.9.7",
"chai": "4.3.6",
"eslint": "7.32.0",
"eslint-config-oclif": "4.0.0",
"eslint-config-oclif-typescript": "1.0.2",
"eslint-config-prettier": "^8.5.0",
"globby": "11.0.4",
"husky": "7.0.4",
"mocha": "9.2.2",
"nock": "^13.2.4",
"nyc": "^15.1.0",
"oclif": "3.0.1",
"prettier": "2.6.2",
"shx": "0.3.4",
"sinon": "^13.0.2",
"source-map-support": "^0.5.21",
"ts-node": "10.7.0",
"tslib": "2.3.1",
"typescript": "4.6.3"
},
"org_entando_dependencies": {
"mysql": "8.0.28",
"postgres": "14.1.0",
"oracle": "18.4.0-xe",
"keycloak": "7.2.0-ENGPM-540-rc1"
}
}