@controlla/cli
Version:
Command line interface for rapid Controlla projects development
39 lines (38 loc) • 1.16 kB
JSON
{
"name": "{{ name }}",
"description": "{{ description }}",
"version": "1.0.0",
"main": "webpack.mix.js",
"scripts": {
"start": "cd frontend && npm run start",
"serve": "concurrently \"php artisan serve\" \"cd frontend && npm run serve\"",
"release": "cd frontend && npm run release && cd .. && npm run update",
"update": "git add . && git commit -m 'docs: update' && standard-version && git push --follow-tags",
"lint": "cd frontend && npm run lint",
"test": "cd frontend && npm run test",
"test:e2e": "cd frontend && npm run test:e2e",
"test:unit": "cd frontend && npm run test:unit",
"new:component": "cd frontend && npm run new:component",
"new:component2": "cd frontend && npm run new:componen2"
},
"author": "Controlla <contacto@controlla.com.mx>",
"license": "EULA",
"dependencies": {
"concurrently": "^4.1.0"
},
"devDependencies": {
"husky": "^2.2.0",
"standard-version": "^6.0.1"
},
"standard-version": {
"skip": {
"tag": true
}
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}