This repository has been archived by the owner on Sep 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.12 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "vuepress-plugin-metrika",
"version": "1.0.3",
"description": "Yandex Metrika plugin for VuePress",
"keywords": [
"vuepress",
"plugin",
"yandex",
"metrika",
"яндекс",
"метрика"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"lint": "eslint --cache src/**/*.ts",
"pretty": "prettier --check src/**/*.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/teners/vuepress-plugin-metrika"
},
"bugs": {
"url": "https://github.com/teners/vuepress-plugin-metrika"
},
"author": "Sergey Sokolov <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/node": "^13.13.4",
"@typescript-eslint/eslint-plugin": "^2.31.0",
"@typescript-eslint/parser": "^2.31.0",
"@vuepress/shared-utils": "^1.8.2",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-vue": "^6.2.2",
"husky": ">=4",
"lint-staged": ">=10",
"prettier": "2.0.5",
"typescript": "^4.9.4",
"vue-eslint-parser": "^9.1.0",
"vue-router": "^3.1.6",
"vuepress-types": "^0.9.4"
},
"dependencies": {
"vue-yandex-metrika": "^1.8.3"
},
"prettier": {
"trailingComma": "all",
"tabWidth": 2,
"printWidth": 100,
"singleQuote": true
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
},
"eslintConfig": {
"parser": "vue-eslint-parser",
"parserOptions": {
"parser": "@typescript-eslint/parser",
"ecmaVersion": 2020,
"sourceType": "module"
},
"root": true,
"env": {
"node": true
},
"extends": [
"airbnb-base",
"plugin:@typescript-eslint/recommended",
"plugin:vue/strongly-recommended"
],
"rules": {
"import/no-unresolved": "off",
"import/extensions": "off",
"no-continue": "off",
"no-restricted-syntax": "off"
}
},
"packageManager": "[email protected]"
}