forked from lando/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 3.04 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
{
"name": "@lando/core",
"description": "The libraries that power all of Lando.",
"version": "3.22.0-beta.4",
"author": "Mike Pirog @pirog",
"license": "GPL-3.0",
"repository": "lando/core",
"bugs": "https://github.com/lando/core/issues/new/choose",
"homepage": "https://github.com/lando/core",
"keywords": [
"lando",
"lando-plugin",
"@lando/core",
"php"
],
"engines": {
"node": ">=18.0.0"
},
"lando": {},
"main": "lib/lando.js",
"nyc": {
"include": [
"builders/**/*.js",
"components/**/*.js",
"hooks/**/*.js",
"lib/**/*.js",
"recipes/**/*.js",
"renderers/**/*.js",
"services/**/*.js",
"types/**/*.js",
"utils/**/*.js"
],
"exclude": [
"test/**"
],
"cache": true,
"all": true
},
"scripts": {
"coverage": "nyc report --reporter=text-lcov | coveralls",
"docs:dev": "vitepress dev docs --debug",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"lint": "eslint . --ext .js --ext .mjs ",
"test:unit": "nyc --reporter=html --reporter=text mocha --timeout 5000 test/**/*.spec.js",
"test:leia": "leia \"examples/**/README.md\" -c 'Destroy tests' --stdin",
"test": "npm run lint && npm run test:unit"
},
"dependencies": {
"@npmcli/arborist": "^6.2.9",
"@octokit/rest": "^19",
"axios": "^1.5.1",
"bluebird": "^3.4.1",
"clean-stacktrace": "^1.1.0",
"cli-truncate": "2.1.0",
"copy-dir": "^0.4.0",
"debug": "^4.3.4",
"delay": "^5",
"dockerfile-generator": "^5.0.0",
"dockerfile-utils": "^0.15.0",
"dockerode": "^2.4.2",
"enquirer": "^2.4.1",
"fs-extra": "^11.1.1",
"glob": "^7.1.3",
"is-class": "^0.0.9",
"is-interactive": "^1",
"is-online": "^9",
"is-root": "^2",
"js-yaml": "^3.4.6",
"jsonfile": "^2.4.0",
"listr2": "^6.6.1",
"lodash": "^4.17.21",
"log-update": "4.0.0",
"mac-ca": "^3.1.0",
"mkcert": "^3.2.0",
"nanoid": "^3",
"node-cache": "^4.1.1",
"node-forge": "^1.3.1",
"npm-package-arg": "^11.0.1",
"npm-profile": "^9.0.0",
"object-hash": "^1.1.8",
"pacote": "^15.1.3",
"rimraf": "^4.1.1",
"semver": "^7.3.2",
"shelljs": "^0.8.4",
"slugify": "^1.6.5",
"string-argv": "0.1.1",
"strip-ansi": "^6.0.1",
"system-ca": "^2.0.0",
"through": "^2.3.8",
"valid-path": "^2.1.0",
"valid-url": "^1.0.9",
"win-ca": "^3.5.1",
"winston": "2.4.5",
"wrap-ansi": "7.0.0",
"yargs-parser": "^11.1.1"
},
"devDependencies": {
"@babel/eslint-parser": "^7.16.0",
"@lando/leia": "^1.0.0-beta.4",
"@lando/vitepress-theme-default-plus": "^1.0.2",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chai-events": "^0.0.1",
"eslint": "^7.32.0",
"eslint-config-google": "^0.9.1",
"eslint-plugin-vue": "^8.0.3",
"mocha": "^9.1.2",
"mock-fs": "https://github.com/pirog/mock-fs.git#256-ctxBindingAccess",
"nyc": "^15.1.0",
"sinon": "^4.3.0",
"sinon-chai": "^2.14.0",
"vitepress": "^1.0.0-rc.42"
}
}