This repository has been archived by the owner on Nov 27, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
96 lines (96 loc) · 2.28 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
{
"name": "wordup-cli",
"description": "Development toolkit for setting up and managing your local WordPress Theme/Plugin",
"version": "1.0.0",
"bin": {
"wordup": "./bin/run"
},
"dependencies": {
"@oclif/command": "^1.5.20",
"@oclif/config": "^1.15.1",
"@oclif/plugin-help": "^2.2.3",
"archiver": "^4.0.1",
"axios": "^0.19.2",
"chalk": "^3.0.0",
"cli-ux": "^5.4.5",
"dot-prop": "^5.2.0",
"express": "^4.17.1",
"fast-glob": "^3.2.2",
"fs-extra": "^8.1.0",
"ignore": "^5.1.4",
"inquirer": "^7.1.0",
"open": "^7.0.3",
"shelljs": "^0.8.4",
"slugify": "^1.3.6",
"tar": "^6.0.2",
"tcp-port-used": "^1.0.1",
"tmp": "^0.2.1",
"update-notifier": "^4.1.0",
"yaml": "^1.9.2",
"yeoman-environment": "^2.9.4",
"yeoman-generator": "^4.8.2"
},
"devDependencies": {
"@oclif/dev-cli": "^1.22.2",
"@oclif/test": "^1.2.5",
"chai": "^4.2.0",
"eslint": "^6.2.2",
"eslint-config-oclif": "^3.1.0",
"globby": "^9.2.0",
"mocha": "^5.2.0",
"nock": "^10.0.6",
"nyc": "^14.1.1",
"sinon": "^7.5.0"
},
"engines": {
"node": ">=8.3.0"
},
"files": [
"/bin",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/src",
"/docker",
"/templates"
],
"homepage": "https://wordup.dev",
"repository": "github:wordup-dev/wordup-cli",
"bugs": "https://github.com/wordup-dev/wordup-cli/issues",
"keywords": [
"wordpress",
"wordup",
"devtools",
"php",
"oclif",
"cli",
"docker"
],
"license": "GPL-3.0",
"main": "src/index.js",
"oclif": {
"commands": "./src/commands",
"bin": "wordup",
"hooks": {
"init": "./src/hooks/update"
},
"plugins": [
"@oclif/plugin-help"
],
"topics": {
"local": {
"description": "Manage the local development server (install, start, stop)"
},
"cloud": {
"description": "All features where a Wordup account is required"
}
}
},
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"posttest": "eslint .",
"prepack": "oclif-dev manifest && oclif-dev readme",
"test": "nyc mocha --forbid-only \"test/**/*.test.js\"",
"version": "oclif-dev readme && git add README.md",
"postversion": "git push && git push --tags"
}
}