-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.04 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
{
"name": "@webdevstudios/create-block",
"version": "0.0.8",
"description": "Generates PHP, JS and CSS code for registering a block for a WordPress plugin.",
"author": "Michael Joseph Panaga <[email protected]> (https://twitter.com/_micmico)",
"license": "GPL-2.0-or-later",
"keywords": [
"wordpress",
"block",
"scaffold"
],
"homepage": "https://github.com/WebDevStudios/create-block/",
"repository": {
"type": "git",
"url": "https://github.com/WebDevStudios/create-block/"
},
"bugs": {
"url": "https://github.com/WebDevStudios/create-block/"
},
"engines": {
"node": ">=10",
"npm": ">=6.9"
},
"files": [
"lib"
],
"main": "index.js",
"bin": {
"create-block": "./index.js"
},
"dependencies": {
"chalk": "^2.4.2",
"check-node-version": "^3.1.1",
"commander": "^4.1.0",
"execa": "^4.0.0",
"inquirer": "^7.0.3",
"lodash": "^4.17.15",
"make-dir": "^3.0.0",
"mustache": "^4.0.0",
"write-pkg": "^4.0.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"create-block": "node index.js"
}
}