@controlla/cli
Version:
Command line interface for rapid Controlla projects development
83 lines (82 loc) • 2.38 kB
JSON
{
"name": "{{ name }}",
"version": "0.1.0",
"description": "{{ description }}",
"license": "MIT",
"author": "Controlla <contacto@controlla.com.mx>",
"contributors": [
"Ivan Sotelo <isotelo@controlla.com.mx>",
"{{ author }}"
],
"homepage": "https://Controlla.github.io/{{ name }}/",
"repository": "Controlla/{{ name }}",
"bugs": {
"url": "https://github.com/Controlla/{{ name }}/issues"
},
"scripts": {
"serve": "vue-cli-service serve --hot",
"release": "npm run test && npm run lint && npm run build-bundle && standard-version && git push --follow-tags && npm publish",
"build": "vue-cli-service build",
"build-bundle": "vue-cli-service build --target lib --name {{ name }} ./src/index.js",
"lint": "vue-cli-service lint",
"test": "",
"test:e2e": "vue-cli-service test:e2e",
"test:unit": "vue-cli-service test:unit",
"postinstall": "controlla-postinstall || exit 0"
},
"controlla": {
"url": "https://github.com/Controlla/{{ name }}",
"logoUrl": "https://controlla.com.mx/logo.txt"
},
"dependencies": {
"@controlla/controlla-postinstall": "^1.0.21",
"core-js": "^3.6.4",
"vue": "^2.6.11"
},
"files": [
"dist/*",
"src/*",
"public/*",
"*.json",
"*.js"
],
"style": "dist/{{ name }}.css",
"main": "./dist/{{ name }}.common.js",
"unpkg": "dist/{{ name }}.umd.min.js",
"jsdelivr": "dist/{{ name }}.umd.min.js",
"private": false,
"keywords": [
"vue",
"vuejs",
"vue-component",
"component",
"vue.js"
],
"devDependencies": {
"@commitlint/cli": "^7.6.1",
"@commitlint/config-conventional": "^7.6.0",
"@vue/cli-plugin-babel": "~4.2.0",
"@vue/cli-plugin-eslint": "~4.2.0",
"@vue/cli-service": "~4.2.0",
"@vue/eslint-config-standard": "^5.1.0",
"babel-eslint": "^10.0.3",
"eslint": "^6.7.2",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^6.1.2",
"husky": "^2.7.0",
"standard-version": "^6.0.1",
"stylus": "^0.54.7",
"stylus-loader": "^3.0.2",
"vue-cli-plugin-pug": "~1.0.7",
"vue-template-compiler": "^2.6.11"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}