-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.18 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
{
"name": "wordpress-devcontainer",
"description": "A simple docker developer environment for wordpress theme and plugin development",
"version": "0.0.3",
"author": "Ken Eucker <[email protected]>",
"contributors": [],
"bin": {},
"scripts": {
"build": "./bin/build",
"clean": "./bin/clean",
"compile": "./bin/compile",
"deploy": "./bin/deploy",
"pull": "./bin/pull",
"redeploy": "npm run compile && npm run deploy",
"start": "./bin/start",
"stop": "./bin/stop",
"teardown": "./bin/teardown",
"vip": "./bin/vip",
"watch": "./bin/watch"
},
"devDependencies": {
"commander": "^2.20.0",
"download-git-repo": "^1.1.0",
"fs-extra": "^7.0.1",
"gulp": "^4.0.0",
"mkdirp": "^0.5.1",
"mkdirp-sync": "^0.0.3",
"mocha": "^6.1.3",
"path": "^0.12.7",
"replace-in-file": "^3.4.4",
"chalk": "^2.4.2"
},
"config": {
"vip": true,
"name": "",
"theme_name": "my-theme",
"plugin_name": null,
"port": 6000,
"admin_user": {
"name": "user",
"pass": "user"
},
"repositories": {
"src": null,
"theme": "KenEucker/understrap-child",
"themes/understrap": "understrap/understrap",
"plugin": null,
"access_token": null,
"clone": false
}
}
}