forked from lando/lando
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
129 lines (129 loc) · 4.07 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
{
"name": "lando",
"description": "The best local development solution in the galaxy.",
"license": "GPL-3.0",
"version": "3.0.0-rc.20",
"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: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 bin lib plugins scripts test",
"lint:sites": "eslint --quiet --ext .js,.vue --config .eslintrc.vuepress.json docs/.vuepress website/.vuepress",
"pkg:cli": "node ./scripts/pkg.js",
"pkg:full": "node ./scripts/pkg.js --installer",
"release": "bump --prompt --tag --all --push",
"dev:docs": "node ./scripts/docs.js && vuepress dev --temp /tmp/lando-docs --cache /tmp/lando-docs-cache --port 8008 docs",
"dev:site": "vuepress dev --temp /tmp/lando-site --cache /tmp/lando-docs-site --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",
"lib/**/*.js",
"plugins/**/*.js"
],
"assets": [
"config.yml",
"package.json",
"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"
]
},
"dependencies": {
"axios": "^0.18.0",
"bluebird": "^3.4.1",
"cli-table": "^0.3.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": {
"@vuepress/plugin-google-analytics": "^1.0.0-rc.1",
"chai": "^3.5.0",
"chai-as-promised": "^7.1.1",
"chai-events": "^0.0.1",
"command-line-test": "^1.0.10",
"coveralls": "^3.0.1",
"eslint": "^6.1.0",
"eslint-config-google": "^0.9.1",
"eslint-plugin-vue": "^5.2.3",
"highlight.js": "9.8.0",
"jsdoc-to-markdown": "^4.0.1",
"leia-parser": "^0.3.4",
"mocha": "^4.1.0",
"mock-fs": "https://github.com/pirog/mock-fs.git#256-ctxBindingAccess",
"nyc": "^12.0.1",
"pkg": "^4.3.7",
"sinon": "^4.3.0",
"sinon-chai": "^2.14.0",
"version-bump-prompt": "^4.2.1",
"vuepress": "^1.0.4",
"vuepress-plugin-autometa": "^0.1.12",
"vuepress-plugin-canonical": "^1.0.0",
"vuepress-plugin-robots": "^1.0.1",
"vuepress-plugin-sitemap": "https://github.com/ekoeryanto/vuepress-plugin-sitemap#dd8b9763b2c7939668a67f2afa34de501dea45d4"
}
}