This repository has been archived by the owner on Jun 23, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 2.04 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"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"
]
}
}