forked from lando/cli
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
149 lines (149 loc) · 4.2 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
{
"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": "[email protected]",
"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": "yarn clean && yarn pkg -c package.json -t node18 bin/lando.js",
"clean": "rimraf dist",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"generate:api": "node ./scripts/yaml2json.js ./sponsors.yml ./contributors.yml --output-dir docs/.vuepress/public/api",
"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 scripts test",
"release": "bump --prompt --tag --all --push",
"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": "yarn lint && yarn 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": {
"@lando/compose": "1.0.0",
"axios": "^1.7.2",
"bluebird": "^3.4.1",
"cli-table3": "^0.6.5",
"copy-dir": "^1.3.0",
"dockerode": "^4.0.0",
"glob": "^7.1.3",
"inquirer": "^6.2.1",
"inquirer-autocomplete-prompt": "^1.0.1",
"js-yaml": "^4.1.0",
"jsonfile": "^6.1.0",
"lodash": "^4.17.21",
"node-cache": "^5.1.2",
"object-hash": "^1.1.8",
"semver": "^7.3.8",
"shelljs": "^0.8.4",
"string-argv": "0.1.1",
"through": "^2.3.8",
"transliteration": "^2.3.5",
"uuid": "^11.0.0",
"valid-url": "^1.0.9",
"winston": "2.4.5",
"yargonaut": "^1.1.4",
"yargs": "^16.1.0"
},
"devDependencies": {
"@babel/core": "^7.24.6",
"@babel/eslint-parser": "^7.24.6",
"chai": "^3.5.0",
"chai-as-promised": "^7.1.2",
"chai-events": "^0.0.1",
"command-line-test": "^1.0.10",
"eslint": "^8.57.0",
"eslint-config-google": "^0.14.0",
"leia-parser": "^0.4.0",
"mocha": "^10.4.0",
"mock-fs": "^5.2.0",
"nyc": "^15.1.0",
"pkg": "^5.3.1",
"rimraf": "^3.0.2",
"sinon": "^4.3.0",
"sinon-chai": "^2.14.0",
"version-bump-prompt": "^4.2.1"
},
"packageManager": "[email protected]+sha1.4ba7fc5c6e704fce2066ecbfb0b0d8976fe62447"
}