rapido
Version:
Rápido is an extensible command line interface that enables rapid development for any technology stack. Rápido is written in JavaScript and is built on top of Node.js and npm.
43 lines (41 loc) • 1.43 kB
JSON
{
"scaffold.command.dir": "scaffolds/command",
"scaffold.stack.dir": "scaffolds/stack",
"name": "default",
"description": "Default commands",
"commands": {
"create command": {
"description": "Creates a new rapido command",
"file": "commands/command-create-command.js"
},
"create command alias": {
"description": "Creates a command alias",
"file": "commands/command-create-command-alias.js"
},
"create stack": {
"description": "Creates a new rapido command stack",
"file": "commands/command-create-stack.js"
},
"list": {
"description": "Lists out commands for enabled stacks",
"file": "commands/command-list.js"
},
"list all": {
"description": "Lists out all commands",
"file": "commands/command-list-all.js"
},
"use": {
"description": "Enables and disables stacks",
"file": "commands/command-use.js"
},
"set": {
"description": "Sets a property in a project's JSON configuration file",
"file": "commands/command-set.js"
},
"default": {
"description": "Default command when $0 is invoked with no arguments",
"file": "commands/command-default.js",
"listed": false
}
}
}