This repository has been archived by the owner on Dec 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 2.35 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
{
"name": "@alexlit/vue-yandex-share",
"version": "2.0.1",
"private": false,
"description": "Vue Yandex Share component",
"keywords": [
"vue",
"yandex",
"social buttons",
"social share",
"social",
"share",
"buttons",
"component"
],
"homepage": "https://github.com/alex-lit/vue-yandex-share#readme",
"bugs": {
"url": "https://github.com/alex-lit/vue-yandex-share/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alex-lit/vue-yandex-share.git"
},
"license": "MIT",
"author": "Alexey Litovchenko",
"maintainers": [
{
"name": "Alexey Litovchenko",
"email": "alex.lit@outlook.com",
"url": "https://alexlit.gitlab.io"
}
],
"main": "./dist/vue-yandex-share.common.js",
"files": [
"src/components/vue-yandex-share/*",
"dist/*"
],
"scripts": {
"build": "./scripts/build.sh",
"dev": "./scripts/dev.sh",
"lint": "./node_modules/@alexlit/lint-kit/scripts/lint.sh",
"lint:eslint": "./node_modules/@alexlit/lint-kit/scripts/lint.eslint.sh",
"lint:markdownlint": "./node_modules/@alexlit/lint-kit/scripts/lint.markdownlint.sh",
"lint:stylelint": "./node_modules/@alexlit/lint-kit/scripts/lint.stylelint.sh",
"publish": "./node_modules/@alexlit/lint-kit/scripts/publish.sh",
"semver": "./node_modules/@alexlit/lint-kit/scripts/semver.sh",
"up": "./node_modules/@alexlit/lint-kit/scripts/up.sh",
"version": "./node_modules/@alexlit/lint-kit/scripts/version.sh"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,ts,vue}": "eslint --fix",
"*.{vue,pcss,scss,sass,css}": "stylelint --fix"
},
"devDependencies": {
"@alexlit/css-material-color-palette-variables": "^1.0.6",
"@alexlit/lint-kit": "^32.7.0",
"@vue/cli-plugin-babel": "~4.5.13",
"@vue/cli-plugin-typescript": "~4.5.13",
"@vue/cli-service": "^4.5.13",
"@vue/test-utils": "^1.2.2",
"cross-env": "^7.0.3",
"element-ui": "^2.15.6",
"node-sass": "^5.0.0",
"postcss-preset-env": "^6.7.0",
"sass-loader": "^10.2.0",
"typescript": "~4.4.3",
"vue": "^2.6.14",
"vue-class-component": "^7.2.6",
"vue-property-decorator": "^9.1.2",
"vue-template-compiler": "^2.6.14",
"vue2-github-corners": "^0.1.12"
}
}