generated from spatie/package-skeleton-laravel
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 2.03 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
{
"name": "skeleton",
"version": "0.0.0",
"description": "[](https://packagist.org/packages/:vendor_slug/:package_slug) [](https://github.com/:vendor_slug/:package_slug/actions?query=workflow%3Arun-tests+branch%3Amain) [](https://github.com/:vendor_slug/:package_slug/actions?query=workflow%3A\"Check+%26+fix+styling\"+branch%3Amain) [](https://packagist.org/packages/:vendor_slug/:package_slug)",
"directories": {
"test": "tests"
},
"scripts": {
"dev": "npm run development",
"development": "mix",
"watch": "mix watch",
"watch-poll": "mix watch -- --watch-options-poll=1000",
"hot": "mix watch --hot",
"prod": "npm run production",
"production": "mix --production",
"test": "echo \"Error: no test specified\" && exit 1",
"release": "gh workflow run release.yml",
"release:patch": "gh workflow run release.yml --field level=patch",
"release:minor": "gh workflow run release.yml --field level=minor",
"release:major": "gh workflow run release.yml --field level=major"
},
"repository": {
"type": "git",
"url": "git+https://github.com/astrogoat/skeleton.git"
},
"keywords": [
"strata",
"skeleton"
],
"author": ":author_name",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/astrogoat/skeleton/issues"
},
"homepage": "https://github.com/astrogoat/skeleton#readme",
"devDependencies": {
"laravel-mix": "^6.0.49",
"tailwindcss": "^3.4.1"
}
}