This repository has been archived by the owner on Feb 8, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
118 lines (118 loc) · 2.83 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
{
"name": "helperpress",
"version": "0.5.5",
"description": "An environment manager for WordPress projects",
"main": "cli/bin/hp",
"preferGlobal": "true",
"bin": {
"hp": "./cli/bin/hp.js"
},
"scripts": {
"test": "echo \"TODO: Add tests \" && exit 1"
},
"repository": {
"type": "git",
"url": "git@bitbucket.org:40digits/helperpress.git"
},
"author": "40Digits Interactive, LLC <hello@40digits.com> (http://www.40digits.com)",
"contributors": [
"Charlie Rosenbury <gmail@rosenbury.com> (http://rosenbury.com)"
],
"bugs": {
"url": "https://github.com/40digits/helperpress/issues"
},
"homepage": {
"url": "https://github.com/40digits/helperpress"
},
"keywords": [
"WordPress",
"composer",
"wp-cli",
"cli",
"php",
"apache"
],
"license": "BSD-2-Clause",
"dependencies": {
"commander": "^2.6.0",
"ejs": "~1.0.0",
"execSync": "~1.0.1-pre",
"findup-sync": "^0.2.1",
"glob": "~4.0.6",
"grunt": "~0.4.5",
"grunt-combine-media-queries": "~1.0.19",
"grunt-composer": "~0.4.0",
"grunt-contrib-clean": "~0.6.0",
"grunt-contrib-copy": "^0.7.0",
"grunt-contrib-symlink": "~0.3.0",
"grunt-mysql-dump-import": "^1.0.1",
"grunt-notify": "^0.4.1",
"grunt-prompt": "^1.3.0",
"grunt-rsync": "~0.6.2",
"grunt-shell": "^1.1.1",
"grunt-ssh": "git+https://github.com/40Digits/grunt-ssh",
"httpsync": "0.0.8",
"lodash": "~2.4.1",
"randomstring": "~1.0.3",
"smartload-grunt-tasks": "^0.1.2",
"underscore-deep-extend": "0.0.5",
"userhome": "^1.0.0"
},
"config": {
"theme_path": false,
"css_path": false,
"build_cmd": false,
"build_cmd_dir": "./",
"build_dir": "www",
"default_plugins": [
{
"name": "WordPress SEO",
"value": "wordpress-seo",
"checked": true
},
{
"name": "Contact Form 7",
"value": "contact-form-7",
"checked": false
},
{
"name": "Really Simple Captcha",
"value": "really-simple-captcha",
"checked": false
},
{
"name": "Contact Form 7 DB",
"value": "contact-form-7-to-database-extension",
"checked": false
},
{
"name": "Disable Updates",
"value": "disable-wordpress-updates",
"checked": false
},
{
"name": "Simple Page Ordering",
"value": "simple-page-ordering",
"checked": false
},
{
"name": "Duplicate Post",
"value": "duplicate-post",
"checked": false
},
{
"name": "Regenerate Thumbnails",
"value": "regenerate-thumbnails",
"checked": false
}
],
"wp": {
"theme": {
"desc": "A custom-built WordPress theme."
}
}
},
"devDependencies": {
"grunt-release": "^0.10.0"
}
}