forked from lando/lando
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 3.12 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",
"description": "The best local development solution in the galaxy.",
"license": "GPL-3.0",
"version": "3.0.0-beta.47",
"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": {
"coverage": "nyc report --reporter=text-lcov | coveralls",
"docs": "node ./scripts/docs.js && gitbook install && gitbook build",
"lint": "eslint bin docs lib scripts test && eslint --config .eslintrc.old.json plugins",
"pkg:cli": "node ./scripts/pkg.js",
"pkg:full": "node ./scripts/pkg.js --installer",
"release:major": "node ./scripts/bump.js --type=major",
"release:minor": "node ./scripts/bump.js --type=minor",
"release:patch": "node ./scripts/bump.js --type=patch",
"release:pre": "node ./scripts/bump.js --type=prerelease",
"serve": "node ./scripts/docs.js && gitbook install && gitbook serve",
"test:unit": "nyc --reporter=html --reporter=text mocha --timeout 5000 test/unit/**/*.spec.js plugins/**/test/unit/**/*.spec.js",
"test:functional": "mocha --timeout 5000 test/functional/**/*.spec.js plugins/**/test/functional/**/*.spec.js",
"test": "yarn lint && yarn test:unit"
},
"pkg": {
"scripts": [
"bin/*.js",
"lib/**/*.js",
"plugins/**/*.js"
],
"assets": [
"config.yml",
"package.json",
"**/fastcgi_params",
"**/*.cnf",
"**/*.conf",
"**/*.ini",
"**/*.php",
"**/*.yml",
"**/*.sh",
"**/*.vcl",
"**/*.json",
"**/*.toml"
]
},
"dependencies": {
"axios": "^0.18.0",
"bluebird": "^3.4.1",
"cli-table": "^0.3.1",
"dockerode": "^2.4.2",
"dotenv": "^4.0.0",
"fs-extra": "^0.18.2",
"gitbook-plugin-adsense": "^1.0.3",
"github": "^12.0.0",
"inquirer": "^3.1.1",
"ip": "^1.1.5",
"js-yaml": "^3.4.6",
"jsonfile": "^2.4.0",
"localtunnel": "^1.8.3",
"lodash": "^4.15.0",
"node-cache": "^4.1.1",
"object-hash": "^1.1.8",
"semver": "^5.4.1",
"shell-escape": "https://github.com/thinktandem/node-shell-escape/tarball/master",
"shelljs": "0.7.8",
"sudo-block": "^2.0.0",
"sync-exec": "^0.6.2",
"uuid": "^3.2.1",
"winston": "^2.2.0",
"yargonaut": "^1.1.2",
"yargs": "^6.6.0",
"yargs-parser": "^4.2.1"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^7.1.1",
"command-line-test": "^1.0.10",
"coveralls": "^3.0.1",
"eslint": "^4.15.0",
"eslint-config-google": "^0.9.1",
"gitbook-cli": "^2.3.0",
"highlight.js": "9.8.0",
"jsdoc-to-markdown": "^4.0.1",
"mocha": "^4.1.0",
"mock-fs": "^4.4.2",
"nyc": "^12.0.1",
"pkg": "^4.3.0-beta.5",
"sinon": "^4.3.0",
"sinon-chai": "^2.14.0"
}
}