-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 911 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 911 Bytes
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
{
"name": "create-local-addon",
"version": "0.3.0",
"type": "module",
"description": "A generator for local add-ons.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"files": [
"app",
"router",
"docs"
],
"keywords": [
"Local",
"WordPress",
"yeoman-generator"
],
"repository": {
"type": "git",
"url": "https://github.com/getflywheel/create-local-addon"
},
"homepage": "https://build.localwp.com",
"author": "Local Team <local-dev@getflywheel.com>",
"license": "MIT",
"dependencies": {
"fs-extra": "^11.3.0",
"gunzip-maybe": "^1.4.2",
"insight": "^0.12.0",
"node-fetch": "^3.3.2",
"outdent": "^0.8.0",
"tar-fs": "^3.0.8",
"yarn": "^1.22.22",
"yeoman-environment": "^4.4.3",
"yeoman-generator": "^7.5.0"
},
"bin": {
"create-local-addon": "./index.js"
}
}