-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 972 Bytes
/
package.json
File metadata and controls
50 lines (50 loc) · 972 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
42
43
44
45
46
47
48
49
50
{
"name": "lpdev",
"version": "0.1.1",
"description": "Laravel Package Development CLI - Manage Laravel package development workflows with ease",
"main": "index.js",
"bin": {
"lpdev": "./bin/lpdev"
},
"scripts": {
"postinstall": "node scripts/postinstall.js",
"test": "bash -n bin/lpdev"
},
"keywords": [
"laravel",
"package",
"development",
"cli",
"workflow",
"composer"
],
"author": {
"name": "Dima Botezatu",
"email": "dima@inovector.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/inovector/lpdev.git"
},
"bugs": {
"url": "https://github.com/inovector/lpdev/issues"
},
"homepage": "https://github.com/inovector/lpdev#readme",
"engines": {
"node": ">=14.0.0"
},
"os": [
"darwin",
"linux"
],
"files": [
"bin/",
"lib/",
"scripts/",
"index.js",
"README.md",
"LICENSE"
],
"preferGlobal": true
}