forked from lando/legacy-cli
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
143 lines (143 loc) · 3.82 KB
/
package.json
File metadata and controls
143 lines (143 loc) · 3.82 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
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"name": "@lando/cli",
"description": "The cli for the best development solution in the galaxy.",
"license": "GPL-3.0",
"version": "3.6.5",
"repository": {
"type": "git",
"url": "https://github.com/lando/cli"
},
"bugs": {
"email": "mike@lando.dev",
"url": "https://github.com/lando/cli/issues"
},
"engines": {
"node": ">=14.0.0"
},
"main": "lib/lando.js",
"bin": {
"lando": "./bin/lando.js"
},
"directories": {
"lib": "./lib"
},
"nyc": {
"include": [
"lib/**/*.js",
"plugins/**/lib/*.js",
"scripts/util.js"
],
"exclude": [
"test/**",
"plugins/**/test"
],
"cache": true,
"all": true
},
"scripts": {
"build:cli": "npm run clean && pkg -c package.json -t node24 bin/lando.js",
"clean": "rimraf dist",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"generate:tests": "leia \"examples/**/README.md\" test -r 2 -s 'Start up tests' -t 'Verification commands' -c 'Destroy tests' --split-file --spawn --stdin",
"lint": "eslint --quiet --no-ignore bin lib plugins test",
"test:unit": "nyc --reporter=html --reporter=text mocha --timeout 5000 test/**/*.spec.js plugins/**/test/**/*.spec.js",
"test:functional": "mocha --timeout 900000 test/**/*.func.js",
"test": "npm run lint && npm run test:unit"
},
"pkg": {
"outputPath": "dist",
"scripts": [
"bin/*.js",
"lib/**/*.js",
"node_modules/@lando/**/*.js",
"plugins/**/*.js"
],
"assets": [
"config.yml",
"package.json",
"node_modules/@lando/**/fastcgi_params",
"node_modules/@lando/**/*.cnf",
"node_modules/@lando/**/*.conf",
"node_modules/@lando/**/*.ini",
"node_modules/@lando/**/*.inc",
"node_modules/@lando/**/*.json",
"node_modules/@lando/**/*.php",
"node_modules/@lando/**/*.py",
"node_modules/@lando/**/*.sh",
"node_modules/@lando/**/*.toml",
"node_modules/@lando/**/*.tpl",
"node_modules/@lando/**/*.tmpl",
"node_modules/@lando/**/*.vcl",
"node_modules/@lando/**/*.xml",
"node_modules/@lando/**/*.yaml",
"node_modules/@lando/**/*.yml",
"plugins/**/fastcgi_params",
"plugins/**/*.cnf",
"plugins/**/*.conf",
"plugins/**/*.ini",
"plugins/**/*.inc",
"plugins/**/*.json",
"plugins/**/*.php",
"plugins/**/*.py",
"plugins/**/*.sh",
"plugins/**/*.toml",
"plugins/**/*.tpl",
"plugins/**/*.tmpl",
"plugins/**/*.vcl",
"plugins/**/*.xml",
"plugins/**/*.yaml",
"plugins/**/*.yml",
"node_modules/figlet/fonts/Small Slant.flf",
"node_modules/figlet/fonts/ANSI Shadow.flf"
],
"dictionary": {
"axios": {
"scripts": [
"dist/node/axios.cjs"
]
}
}
},
"dependencies": {
"axios": "^1.13.5",
"bluebird": "^3.4.1",
"chalk": "^4.1.2",
"cli-table3": "^0.6.5",
"copy-dir": "^1.3.0",
"dockerode": "^4.0.9",
"glob": "^13.0.0",
"js-yaml": "^4.1.1",
"jsonfile": "^6.1.0",
"lodash": "^4.17.23",
"node-cache": "^5.1.2",
"object-hash": "^3.0.0",
"semver": "^7.7.3",
"shelljs": "^0.10.0",
"string-argv": "0.1.1",
"transliteration": "^2.6.1",
"winston": "^3.11.0",
"yargs": "^16.1.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@yao-pkg/pkg": "^6.12.0",
"chai": "^4.5.0",
"chai-as-promised": "^7.1.2",
"chai-events": "^0.0.3",
"command-line-test": "^1.0.10",
"eslint": "^9.39.2",
"eslint-config-google": "^0.14.0",
"eslint-plugin-jsdoc": "^62.2.0",
"globals": "^17.1.0",
"leia-parser": "^0.4.0",
"mocha": "^11.7.5",
"mock-fs": "^5.2.0",
"nyc": "^17.1.0",
"rimraf": "^6.1.2",
"sinon": "^4.3.0",
"sinon-chai": "^3.7.0"
},
"peerDependencies": {
"debug": "^4.4.3"
}
}