mirror of
https://github.com/analyticsjs/vue-baidu-analytics.git
synced 2025-04-04 23:42:46 +08:00
73 lines
2.0 KiB
JSON
73 lines
2.0 KiB
JSON
{
|
|
"name": "vue-baidu-analytics",
|
|
"version": "2.2.0",
|
|
"description": "A data collection tool that supports reporting of single-page application data built by Vue 3.0 & 2.0 & VuePress, based on baidu statistics.",
|
|
"main": "dist/vue-baidu-analytics.min.js",
|
|
"types": "vue-baidu-analytics.d.ts",
|
|
"scripts": {
|
|
"build": "rollup -c rollup.config.ts",
|
|
"lint": "eslint src --ext .js,.ts",
|
|
"prettier": "prettier --write src"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/analyticsjs/vue-baidu-analytics.git"
|
|
},
|
|
"keywords": [
|
|
"baidu",
|
|
"vue baidu",
|
|
"vue 百度统计",
|
|
"vue analytics",
|
|
"vuepress analytics",
|
|
"vue 3.0 baidu",
|
|
"vue 3.0 百度统计",
|
|
"vue 3.0 analytics",
|
|
"spa analytics",
|
|
"baidu统计",
|
|
"vuepress统计",
|
|
"百度统计"
|
|
],
|
|
"author": "chengpeiquan",
|
|
"homepage": "https://github.com/analyticsjs/vue-baidu-analytics",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@babel/core": "^7.11.1",
|
|
"@babel/plugin-proposal-class-properties": "^7.10.4",
|
|
"@babel/preset-env": "^7.11.0",
|
|
"@babel/preset-typescript": "^7.10.4",
|
|
"@rollup/plugin-babel": "^5.2.0",
|
|
"@rollup/plugin-commonjs": "^15.0.0",
|
|
"@rollup/plugin-json": "^4.1.0",
|
|
"@rollup/plugin-node-resolve": "^9.0.0",
|
|
"@types/babel__core": "^7.1.9",
|
|
"@typescript-eslint/eslint-plugin": "^4.20.0",
|
|
"@typescript-eslint/parser": "^4.20.0",
|
|
"chalk": "^4.1.1",
|
|
"eslint": "^7.23.0",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"eslint-plugin-prettier": "^3.4.0",
|
|
"husky": "4.2.3",
|
|
"lint-staged": "^11.0.0",
|
|
"prettier": "^2.3.1",
|
|
"rollup": "^2.44.0",
|
|
"rollup-plugin-banner2": "^1.2.2",
|
|
"rollup-plugin-terser": "^7.0.0",
|
|
"rollup-plugin-typescript2": "^0.30.0",
|
|
"tslib": "^2.3.0",
|
|
"typescript": "^4.0.2"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged",
|
|
"commit-msg": "node scripts/verifyCommit.js"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,jsx,vue,ts,tsx}": [
|
|
"prettier --write",
|
|
"eslint --fix",
|
|
"git add"
|
|
]
|
|
}
|
|
}
|