|
| 1 | +{ |
| 2 | + "commands": { |
| 3 | + "dump:rcfile": { |
| 4 | + "settings": {}, |
| 5 | + "commandPath": "@adonisjs/core/build/commands/DumpRc", |
| 6 | + "commandName": "dump:rcfile", |
| 7 | + "description": "Dump contents of .adonisrc.json file along with defaults", |
| 8 | + "args": [], |
| 9 | + "aliases": [], |
| 10 | + "flags": [] |
| 11 | + }, |
| 12 | + "list:routes": { |
| 13 | + "settings": { |
| 14 | + "loadApp": true, |
| 15 | + "stayAlive": true |
| 16 | + }, |
| 17 | + "commandPath": "@adonisjs/core/build/commands/ListRoutes/index", |
| 18 | + "commandName": "list:routes", |
| 19 | + "description": "List application routes", |
| 20 | + "args": [], |
| 21 | + "aliases": [], |
| 22 | + "flags": [ |
| 23 | + { |
| 24 | + "name": "verbose", |
| 25 | + "propertyName": "verbose", |
| 26 | + "type": "boolean", |
| 27 | + "description": "Display more information" |
| 28 | + }, |
| 29 | + { |
| 30 | + "name": "reverse", |
| 31 | + "propertyName": "reverse", |
| 32 | + "type": "boolean", |
| 33 | + "alias": "r", |
| 34 | + "description": "Reverse routes display" |
| 35 | + }, |
| 36 | + { |
| 37 | + "name": "methods", |
| 38 | + "propertyName": "methodsFilter", |
| 39 | + "type": "array", |
| 40 | + "alias": "m", |
| 41 | + "description": "Filter routes by method" |
| 42 | + }, |
| 43 | + { |
| 44 | + "name": "patterns", |
| 45 | + "propertyName": "patternsFilter", |
| 46 | + "type": "array", |
| 47 | + "alias": "p", |
| 48 | + "description": "Filter routes by the route pattern" |
| 49 | + }, |
| 50 | + { |
| 51 | + "name": "names", |
| 52 | + "propertyName": "namesFilter", |
| 53 | + "type": "array", |
| 54 | + "alias": "n", |
| 55 | + "description": "Filter routes by route name" |
| 56 | + }, |
| 57 | + { |
| 58 | + "name": "json", |
| 59 | + "propertyName": "json", |
| 60 | + "type": "boolean", |
| 61 | + "description": "Output as JSON" |
| 62 | + }, |
| 63 | + { |
| 64 | + "name": "table", |
| 65 | + "propertyName": "table", |
| 66 | + "type": "boolean", |
| 67 | + "description": "Output as Table" |
| 68 | + }, |
| 69 | + { |
| 70 | + "name": "max-width", |
| 71 | + "propertyName": "maxWidth", |
| 72 | + "type": "number", |
| 73 | + "description": "Specify maximum rendering width. Ignored for JSON Output" |
| 74 | + } |
| 75 | + ] |
| 76 | + }, |
| 77 | + "generate:key": { |
| 78 | + "settings": {}, |
| 79 | + "commandPath": "@adonisjs/core/build/commands/GenerateKey", |
| 80 | + "commandName": "generate:key", |
| 81 | + "description": "Generate a new APP_KEY secret", |
| 82 | + "args": [], |
| 83 | + "aliases": [], |
| 84 | + "flags": [] |
| 85 | + }, |
| 86 | + "repl": { |
| 87 | + "settings": { |
| 88 | + "loadApp": true, |
| 89 | + "environment": "repl", |
| 90 | + "stayAlive": true |
| 91 | + }, |
| 92 | + "commandPath": "@adonisjs/repl/build/commands/AdonisRepl", |
| 93 | + "commandName": "repl", |
| 94 | + "description": "Start a new REPL session", |
| 95 | + "args": [], |
| 96 | + "aliases": [], |
| 97 | + "flags": [] |
| 98 | + } |
| 99 | + }, |
| 100 | + "aliases": {} |
| 101 | +} |
0 commit comments