@controlla/cli
Version:
Command line interface for rapid Controlla projects development
31 lines (30 loc) • 830 B
JSON
{
"name": "{{ name }}",
"version": "1.0.0",
"description": "{{ description }}",
"main": "index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"test": "flutter test",
"env-copy": "cp .env.example .env",
"flutter-runner": "flutter pub run build_runner build --delete-conflicting-outputs",
"flutter-assets": "flutter pub run flutter_native_splash:create && flutter pub run flutter_launcher_icons:main"
},
"author": "Ivan Sotelo",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"husky": "^3.1.0",
"standard-version": "^7.0.1"
},
"husky": {
"hooks": {
"pre-commit": "flutter format --set-exit-if-changed .",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}