-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
61 lines (61 loc) · 2.04 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
51
52
53
54
55
56
57
58
59
60
61
{
"name": "laravel-craftsman",
"version": "1.12.0",
"build": "353",
"description": "Laravel Craftsman",
"tagLine": "Laravel Artisan `make:xxx` on Steroids",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"analyze": "vendor/bin/phpinsights",
"bump": "./tasks/bumpBuild.js --verbose",
"build": "./tasks/build.sh",
"build:deploy": "./tasks/build.sh --deploy",
"deploy": "./tasks/deploy.sh",
"insights": "echo '\nPreparing Code Analysis...\n' && ./vendor/bin/phpinsights --config-path=\"config/insights.php\"",
"publish": "./tasks/publish.sh",
"test": "vendor/bin/phpunit --stop-on-failure",
"test:all": "vendor/bin/phpunit --stop-on-failure",
"test:coverage": "vendor/bin/phpunit --coverage-html coverage",
"test:coverage-xdebug": "vendor/bin/phpunit --coverage-html coverage",
"test:feature": "vendor/bin/phpunit --testsuite Feature",
"test:unit": "vendor/bin/phpunit --testsuite Unit --stop-on-failure",
"test:watch": "vendor/bin/phpunit-watcher watch",
"test:stress": "./tasks/stress-test.sh 10",
"test:docker": "./tasks/test-docker.sh",
"test:ci": "./vendor/bin/phpunit -c phpunit.ci.xml --testsuite Unit",
"test:travis": "./vendor/bin/phpunit -c phpunit.ci.xml --testsuite Unit",
"pre-commit": "npm run test:travis",
"todo": "./tasks/todo.js",
"todo:file": "./tasks/todo.js > TODO.md",
"todo:out": "./tasks/todo.js > TODO.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mikeerickson/laravel-craftsman.git"
},
"keywords": [
"cli",
"craftsman",
"generate",
"generator",
"laravel",
"scaffold",
"artisan",
"artisan make:xxxx",
"make",
"phpunit",
"pest"
],
"author": "Mike Erickson <codedungeon@gmail.com> (https://github.com/mikeerickson)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mikeerickson/laravel-craftsman/issues"
},
"homepage": "https://github.com/mikeerickson/laravel-craftsman#readme",
"devDependencies": {
"colors": "1.4.0"
}
}