27 lines
744 B
JSON
27 lines
744 B
JSON
{
|
|
"name": "@cmp/cmp-common",
|
|
"version": "6.0.0",
|
|
"private": true,
|
|
"author": "Haijun Zhang <zhanghaijun@beyondcent.com>",
|
|
"scripts": {
|
|
"serve": "vue-cli-service serve",
|
|
"build": "vue-cli-service build",
|
|
"lint": "vue-cli-service lint",
|
|
"fix": "vue-cli-service lint --fix",
|
|
"fix-memory-limit": "cross-env LIMIT=4096 increase-memory-limit",
|
|
"precommit": "lint-staged"
|
|
},
|
|
"typings": "types/index.d.ts",
|
|
"lint-staged": {
|
|
"src/**/*.{js,vue}": [
|
|
"eslint --fix",
|
|
"git add"
|
|
]
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged",
|
|
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
|
|
}
|
|
}
|
|
} |