-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.17 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
{
"name": "lando-gui",
"version": "1.8.5",
"description": "Web-based GUI for managing Lando sites",
"main": "server.js",
"bin": {
"lando-gui": "./bin/cli.js"
},
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint server.js config.js middleware/",
"lint:fix": "eslint server.js config.js middleware/ --fix"
},
"keywords": [
"lando",
"gui",
"wordpress",
"development",
"local-development",
"devops"
],
"author": "James Welbes <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/welbinator/lando-gui.git"
},
"bugs": {
"url": "https://github.com/welbinator/lando-gui/issues"
},
"homepage": "https://github.com/welbinator/lando-gui#readme",
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.18.2"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.0.0",
"globals": "^17.3.0",
"jest": "^30.2.0",
"nodemon": "^3.0.1",
"supertest": "^7.2.2"
}
}