-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 720 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 720 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
{
"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"
},
"keywords": [
"lagoon",
"cli"
],
"author": "",
"license": "MIT",
"dependencies": {
"@eslint/js": "^9.26.0",
"@inquirer/prompts": "^7.5.0",
"chalk": "^5.3.0",
"commander": "^13.1.0",
"eslint": "^9.24.0",
"eslint-plugin-n": "^17.17.0",
"globals": "^16.1.0",
"js-yaml": "^4.1.0",
"ora": "^7.0.1"
},
"engine": {
"node": ">22"
}
}