forked from lando/core-next
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
142 lines (142 loc) · 3.66 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
{
"name": "@lando/core",
"description": "The libraries that power all of Lando.",
"version": "4.0.0-unstable.3",
"author": "Mike Pirog @pirog",
"license": "GPL-3.0",
"repository": "lando/core-next",
"bugs": "https://github.com/lando/core-next/issues/new/choose",
"homepage": "https://github.com/lando/core-next",
"keywords": [
"lando",
"core"
],
"engines": {
"node": ">=16.0.0"
},
"exports": {
"./app": "./lib/app.js",
"./bootstrap": "./lib/bootstrap.js",
"./config": "./lib/config.js",
"./debug": "./lib/debug.js",
"./file-storage": "./components/file-storage.js",
"./no-storage": "./components/no-storage.js",
"./lando": "./lib/product.js",
"./product": "./lib/product.js",
"./plugin": "./lib/plugin.js",
"./templator": "./lib/templator.js",
"./components/*": "./components/*.js",
"./lib/*": "./lib/*.js",
"./utils/*": "./utils/*.js"
},
"nyc": {
"include": [
"lib/**/*.js",
"recipes/**/*.js",
"services/**/*.js",
"types/**/*.js"
],
"exclude": [
"test/**"
],
"cache": true,
"all": true
},
"scripts": {
"coverage": "nyc report --reporter=text-lcov | coveralls",
"docs:dev": "vuepress dev docs --clean-cache --clean-temp",
"docs:build": "vuepress build docs",
"docs:lint": "eslint -c docs/.eslintrc.json --quiet docs/.vuepress",
"lint": "eslint --quiet . && yarn docs:lint",
"release": "bundle-dependencies update && bump --prompt --tag --all --push",
"test:unit": "nyc --reporter=html --reporter=text mocha --timeout 5000 test/**/*.spec.js",
"test:leia": "yarn leia \"examples/**/README.md\" -c 'Destroy tests' --stdin",
"test": "yarn lint && yarn test:unit"
},
"dependencies": {
"@npmcli/arborist": "^6.2.9",
"axios": "0.21.4",
"bluebird": "^3.4.1",
"camelcase-keys": "^7",
"chalk": "^4",
"copy-dir": "^0.4.0",
"dayjs": "^1.8.25",
"dockerode": "^2.4.2",
"fs-extra": "^11.1.1",
"glob": "^7.1.3",
"ip": "^1.1.8",
"is-class": "^0.0.9",
"js-yaml": "^4.1.0",
"jsonfile": "^2.4.0",
"kebabcase-keys": "^1.0.0",
"lodash": "^4.17.21",
"nanoid": "^3",
"nconf": "^0.12.0",
"node-cache": "^4.1.1",
"object-hash": "^1.1.8",
"pacote": "^15.1.3",
"semver": "^7.3.2",
"shelljs": "^0.8.4",
"slugify": "^1.6.5",
"string-argv": "0.1.1",
"through": "^2.3.8",
"transliteration": "^2.2.0",
"uuid": "^3.2.1",
"valid-url": "^1.0.9",
"which": "^2.0.2",
"winston": "2.4.5",
"yaml": "^2.1.1"
},
"devDependencies": {
"@babel/eslint-parser": "^7.16.0",
"@lando/leia": "^0.6.4",
"@lando/vuepress-theme-default-plus": "1.0.0-beta.45",
"bundle-dependencies": "^1.0.2",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chai-events": "^0.0.1",
"command-line-test": "^1.0.10",
"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",
"version-bump-prompt": "^4.2.1",
"vuepress": "2.0.0-beta.53"
},
"bundledDependencies": [
"@oclif/core",
"axios",
"bluebird",
"camelcase-keys",
"chalk",
"copy-dir",
"dayjs",
"dockerode",
"glob",
"ip",
"is-class",
"js-yaml",
"jsonfile",
"kebabcase-keys",
"lodash",
"nanoid",
"nconf",
"node-cache",
"object-hash",
"semver",
"shelljs",
"slugify",
"string-argv",
"through",
"transliteration",
"uuid",
"valid-url",
"which",
"winston",
"yaml"
]
}