This repository has been archived by the owner on May 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 81
/
package.json
102 lines (102 loc) · 2.05 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
{
"name": "wp-local-docker",
"version": "4.0.0",
"description": "WP Local Docker",
"license": "MIT",
"homepage": "https://10up.github.io/wp-local-docker-docs/",
"bugs": {
"url": "https://github.com/10up/wp-local-docker-v2/issues"
},
"keywords": [
"wordpress",
"wp",
"wp-cli",
"wpsnapshots",
"docker",
"docker-compose",
"nginx",
"php",
"mysql",
"phpmyadmin",
"memcache",
"memcached",
"mailcatcher"
],
"preferGlobal": true,
"main": "index.js",
"files": [
"src",
"global",
"scripts",
"index.js",
"hosts.js"
],
"scripts": {
"postinstall": "npm run 10updocker postinstall --silent",
"10updocker": "./index.js",
"10updocker-hosts": "./hosts.js",
"lint": "eslint . --ext .js --ignore-pattern node_modules",
"format": "npm run lint --silent -- --fix"
},
"bin": {
"10updocker": "./index.js",
"10updocker-hosts": "./hosts.js"
},
"repository": {
"type": "git",
"url": "[email protected]:10up/wp-local-docker-v2.git"
},
"engines": {
"node": ">=16"
},
"author": "10up <[email protected]> (https://10up.com/)",
"contributors": [
{
"name": "Chris Marslender"
}
],
"dependencies": {
"@sindresorhus/slugify": "^1.1.2",
"asyncro": "^3.0.0",
"boxen": "^5.0.1",
"chalk": "^4.1.2",
"docker-compose": "^0.23.13",
"dockerode": "^3.3.0",
"fs-extra": "^9.1.0",
"hostile": "^1.3.3",
"inquirer": "^8.1.2",
"log-symbols": "^4.1.0",
"markdown-it": "^12.2.0",
"mkcert": "^1.4.0",
"mkcert-prebuilt": "^1.0.0",
"mysql": "^2.17.1",
"netcat": "^1.4.0",
"ora": "^5.4.1",
"read-yaml": "^1.1.0",
"request": "^2.88.2",
"shell-escape": "^0.2.0",
"strip-ansi": "^6.0.0",
"sudo-prompt": "^9.2.1",
"table": "^6.7.1",
"terminal-link": "^2.1.1",
"update-check": "^1.5.3",
"which": "^2.0.2",
"write-yaml": "^1.0.0",
"yargs": "^16.2.0"
},
"devDependencies": {
"@10up/eslint-config": "^1.0.9",
"babel-eslint": "^10.0.3",
"eslint": "^7.32.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.4"
},
"lint-staged": {
"*.js": "eslint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}