-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
50 lines (50 loc) · 1.1 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
{
"name": "wp-block-builder",
"version": "0.12.1",
"description": "A foundation for WordPress Gutenberg blocks plugin development that aims to provide clear and concise guide for building your first block plugin.",
"author": "Jeffrey Carandang (https://twitter.com/phpbits)",
"license": "GPL-2.0-or-later",
"keywords": [
"wordpress",
"gutenberg",
"block",
"scaffold"
],
"homepage": "https://github.com/phpbits/wp-block-builder",
"repository": {
"type": "git",
"url": "https://github.com/phpbits/wp-block-builder.git"
},
"bugs": {
"url": "https://github.com/phpbits/wp-block-builder/issues"
},
"engines": {
"node": ">=10",
"npm": ">=6.9"
},
"files": [
"lib"
],
"main": "index.js",
"bin": {
"create-block": "./index.js"
},
"dependencies": {
"chalk": "^4.0.0",
"check-node-version": "^3.1.1",
"commander": "^4.1.0",
"execa": "^4.0.2",
"fast-glob": "^2.2.7",
"inquirer": "^7.1.0",
"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"
}
}