-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 941 Bytes
/
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
{
"name": "@mzur/laravel-mix-artisan-publish",
"version": "1.0.0",
"description": "Laravel Mix plugin to run `php artisan vendor:publish` by chaining `.publish()`",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"homepage": "https://github.com/mzur/laravel-mix-artisan-publish",
"author": "Martin Zurowietz <martin@zurowietz.de>",
"license": "MIT",
"keywords": [
"laravel",
"laravel mix",
"mix",
"artisan",
"mix publish"
],
"repository": {
"type": "git",
"url": "git://github.com/mzur/laravel-mix-artisan-publish.git"
},
"bugs": {
"url": "https://github.com/mzur/laravel-mix-artisan-publish/issues"
},
"dependencies": {
"node-cmd": "^3.0.0"
},
"peerDependencies": {
"laravel-mix": "^4.0||^5.0||^6.0"
},
"engines": {
"node": ">=6.0.0"
},
"publishConfig": {
"registry":"https://npm.pkg.github.com"
}
}