forked from lando/lando
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
171 lines (171 loc) · 5.82 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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
{
"name": "lando",
"description": "The best local development solution in the galaxy.",
"license": "GPL-3.0",
"version": "3.0.0-rrc.4",
"repository": {
"type": "git",
"url": "https://github.com/lando/lando"
},
"bugs": {
"email": "[email protected]",
"url": "https://github.com/lando/lando/issues"
},
"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:docs": "node ./scripts/docs.js && vuepress build docs -d _docs",
"build:blog": "vuepress build blog -d _blog",
"build:events": "vuepress build events -d _events",
"build:site": "vuepress build website -d _site",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"generate-tests": "leia \"examples/**/README.md\" test -r 6 -s 'Start up tests' -t 'Verification commands' -c 'Destroy tests' --split-file",
"lint": "eslint --quiet --no-ignore api bin experimental lib plugins scripts test metrics",
"lint:sites": "eslint --quiet --ext .js,.vue --config .eslintrc.vuepress.json blog/.vuepress docs/.vuepress events/.vuepress website/.vuepress",
"pkg:cli": "node ./scripts/pkg.js",
"pkg:full": "node ./scripts/pkg.js --installer",
"release": "bump --prompt --tag --all --push",
"dev:api": "./node_modules/nodemon/bin/nodemon.js ./api/server.js",
"dev:blog": "vuepress dev --temp /tmp/lando-blog --cache /tmp/lando-blog-cache --port 8007 blog",
"dev:docs": "node ./scripts/docs.js && vuepress dev --temp /tmp/lando-docs --cache /tmp/lando-docs-cache --port 8008 docs",
"dev:events": "vuepress dev --temp /tmp/lando-events --cache /tmp/lando-events-cache --port 8006 events",
"dev:metrics": "./node_modules/nodemon/bin/nodemon.js ./metrics/server.js",
"dev:site": "vuepress dev --temp /tmp/lando-site --cache /tmp/lando-site-cache --port 8009 website",
"test:unit": "nyc --reporter=html --reporter=text mocha --timeout 5000 test/**/*.spec.js plugins/**/test/**/*.spec.js",
"test:unit:core": "nyc --reporter=html --reporter=text mocha --timeout 5000 test/**/*.spec.js",
"test:unit:plugins": "nyc --reporter=html --reporter=text mocha --timeout 5000 plugins/**/test/**/*.spec.js",
"test:functional": "mocha --timeout 900000 test/**/*.func.js",
"test": "yarn lint && yarn test:unit"
},
"pkg": {
"scripts": [
"bin/*.js",
"experimental/**/*.js",
"lib/**/*.js",
"plugins/**/*.js"
],
"assets": [
"config.yml",
"package.json",
"experimental/plugins/**/fastcgi_params",
"experimental/plugins/**/*.cnf",
"experimental/plugins/**/*.conf",
"experimental/plugins/**/*.ini",
"experimental/plugins/**/*.json",
"experimental/plugins/**/*.php",
"experimental/plugins/**/*.sh",
"experimental/plugins/**/*.toml",
"experimental/plugins/**/*.tpl",
"experimental/plugins/**/*.vcl",
"experimental/plugins/**/*.xml",
"experimental/plugins/**/*.yml",
"plugins/**/fastcgi_params",
"plugins/**/*.cnf",
"plugins/**/*.conf",
"plugins/**/*.ini",
"plugins/**/*.json",
"plugins/**/*.php",
"plugins/**/*.sh",
"plugins/**/*.toml",
"plugins/**/*.tpl",
"plugins/**/*.vcl",
"plugins/**/*.xml",
"plugins/**/*.yml",
"node_modules/figlet/fonts/Small Slant.flf",
"node_modules/figlet/fonts/ANSI Shadow.flf"
]
},
"dependencies": {
"axios": "^0.18.1",
"bluebird": "^3.4.1",
"clean-stacktrace": "^1.1.0",
"cli-table": "^0.3.1",
"cli-table3": "^0.5.1",
"copy-dir": "^0.4.0",
"dockerode": "^2.4.2",
"github": "^12.0.0",
"glob": "^7.1.3",
"inquirer": "^6.2.1",
"inquirer-autocomplete-prompt": "^1.0.1",
"ip": "^1.1.5",
"js-yaml": "^3.4.6",
"jsonfile": "^2.4.0",
"localtunnel": "^1.9.2",
"lodash": "^4.15.0",
"mkdirp": "^0.5.1",
"node-cache": "^4.1.1",
"object-hash": "^1.1.8",
"semver": "^5.4.1",
"shelljs": "0.7.8",
"string-argv": "^0.1.1",
"sudo-block": "^2.0.0",
"uuid": "^3.2.1",
"valid-url": "^1.0.9",
"winston": "^2.2.0",
"yargonaut": "^1.1.2",
"yargs": "^12.0.5"
},
"devDependencies": {
"@bugsnag/js": "^6.4.3",
"@octokit/rest": "^17.1.0",
"@vuepress/plugin-blog": "^1.9.2",
"@vuepress/plugin-google-analytics": "^1.0.0-rc.1",
"@vuepress/theme-blog": "^2.0.0",
"body-parser": "^1.14.2",
"chai": "^3.5.0",
"chai-as-promised": "^7.1.1",
"chai-events": "^0.0.1",
"command-line-test": "^1.0.10",
"compression": "^1.7.4",
"cors": "^2.8.5",
"coveralls": "^3.0.1",
"dayjs": "^1.8.19",
"dotenv": "^4.0.0",
"elasticsearch": "~10.1.2",
"eslint": "^6.1.0",
"eslint-config-google": "^0.9.1",
"eslint-plugin-vue": "^5.2.3",
"express": "^4.13.3",
"highlight.js": "9.8.0",
"jsdoc-to-markdown": "^4.0.1",
"leia-parser": "^0.3.4",
"mailchimp-api-v3": "^1.13.1",
"mocha": "^4.1.0",
"mock-fs": "https://github.com/pirog/mock-fs.git#256-ctxBindingAccess",
"nodemon": "^1.11.0",
"nyc": "^12.0.1",
"pkg": "^4.4.4",
"platformsh": "^1.0.0",
"sinon": "^4.3.0",
"sinon-chai": "^2.14.0",
"slack-notify": "^0.1.7",
"version-bump-prompt": "^4.2.1",
"vue-feather-icons": "^5.0.0",
"vue2-google-maps": "^0.10.7",
"vuepress": "^1.0.4",
"vuepress-plugin-autometa": "^0.1.12",
"vuepress-plugin-canonical": "^1.0.0",
"vuepress-plugin-container": "^2.1.2",
"vuepress-plugin-feed": "^0.1.8",
"vuepress-plugin-robots": "^1.0.1",
"vuepress-plugin-sitemap": "https://github.com/ekoeryanto/vuepress-plugin-sitemap#dd8b9763b2c7939668a67f2afa34de501dea45d4"
}
}