-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 849 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 849 Bytes
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
{
"name": "lagoon-cli-wrapper",
"version": "1.0.0",
"description": "A CLI wrapper for Lagoon CLI",
"main": "index.mjs",
"scripts": {
"start": "node index.mjs",
"lint": "eslint . --ext .mjs",
"lint:fix": "eslint . --ext .mjs --fix",
"lint:report": "eslint . --ext .mjs -f json -o eslint-report.json",
"test": "NODE_OPTIONS=--experimental-vm-modules jest"
},
"keywords": [
"lagoon",
"cli"
],
"author": "",
"license": "MIT",
"dependencies": {
"@eslint/js": "^9.27.0",
"@inquirer/prompts": "^7.8.0",
"chalk": "^5.3.0",
"commander": "^14.0.0",
"eslint": "^9.24.0",
"eslint-plugin-n": "^17.18.0",
"globals": "^16.1.0",
"js-yaml": "^4.1.0",
"ora": "^8.2.0"
},
"engine": {
"node": ">22"
},
"devDependencies": {
"jest": "^29.7.0"
},
"type": "module"
}