-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 937 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 937 Bytes
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
{
"name": "basic-wordpress-box",
"version": "1.7.2",
"description": "A basic WordPress environment modeled after managed WordPress hosting platforms. PHP7 on Apache.",
"main": "index.js",
"private": true,
"scripts": {
"build": "./build.sh",
"clean": "vagrant destroy -f && rm -rf ./box",
"version": "version-everything && git add -u"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ideasonpurpose/basic-wordpress-box.git"
},
"keywords": [
"vagrant",
"wordpress",
"base-box"
],
"version_files": [
"README.md",
"ansible/main.yml",
"Vagrantfile"
],
"author": "Joe Maller <joe@ideasonpurpose.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ideasonpurpose/basic-wordpress-box/issues"
},
"homepage": "https://github.com/ideasonpurpose/basic-wordpress-box#readme",
"devDependencies": {
"version-everything": "^0.2.3"
}
}