You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
82 lines
1.8 KiB
82 lines
1.8 KiB
6 years ago
|
{
|
||
|
"name": "vue-share-buttons",
|
||
5 years ago
|
"version": "1.1.0",
|
||
6 years ago
|
"private": false,
|
||
|
"license": "MIT",
|
||
6 years ago
|
"homepage": "https://github.com/Alexandrshy/vue-share-buttons",
|
||
6 years ago
|
"author": "Alexandr Shulaev <[email protected]>",
|
||
6 years ago
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "[email protected]:Alexandrshy/vue-share-buttons"
|
||
|
},
|
||
6 years ago
|
"bugs": {
|
||
|
"url": "https://github.com/Alexandrshy/vue-share-buttons/issues"
|
||
|
},
|
||
|
"keywords": [
|
||
|
"vue2",
|
||
|
"vuejs2",
|
||
|
"vue-components",
|
||
|
"share",
|
||
|
"share-link",
|
||
|
"share-buttons",
|
||
|
"social-buttons"
|
||
|
],
|
||
|
"description": "🔗A set of social buttons for Vue.js",
|
||
6 years ago
|
"scripts": {
|
||
|
"serve": "vue-cli-service serve",
|
||
|
"build": "vue-cli-service build",
|
||
6 years ago
|
"lint": "vue-cli-service lint",
|
||
5 years ago
|
"build-bundle": "vue-cli-service build --target lib --name vue-share-buttons ./src/VueShareButtons.vue"
|
||
6 years ago
|
},
|
||
|
"dependencies": {
|
||
6 years ago
|
"node-sass": "^4.11.0",
|
||
6 years ago
|
"sass-loader": "^7.1.0",
|
||
6 years ago
|
"vue": "^2.6.6"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"@vue/cli-plugin-babel": "^3.5.0",
|
||
|
"@vue/cli-plugin-eslint": "^3.5.0",
|
||
6 years ago
|
"@vue/cli-service": "^3.5.3",
|
||
6 years ago
|
"babel-eslint": "^10.0.1",
|
||
|
"eslint": "^5.8.0",
|
||
6 years ago
|
"eslint-config-prettier": "^4.1.0",
|
||
|
"eslint-plugin-prettier": "^3.0.1",
|
||
6 years ago
|
"eslint-plugin-vue": "^5.0.0",
|
||
6 years ago
|
"prettier": "^1.16.4",
|
||
6 years ago
|
"vue-template-compiler": "^2.5.21"
|
||
|
},
|
||
|
"eslintConfig": {
|
||
|
"root": true,
|
||
|
"env": {
|
||
|
"node": true
|
||
|
},
|
||
|
"extends": [
|
||
|
"plugin:vue/essential",
|
||
6 years ago
|
"eslint:recommended",
|
||
|
"prettier/vue"
|
||
6 years ago
|
],
|
||
|
"rules": {},
|
||
|
"parserOptions": {
|
||
|
"parser": "babel-eslint"
|
||
|
}
|
||
|
},
|
||
|
"postcss": {
|
||
|
"plugins": {
|
||
|
"autoprefixer": {}
|
||
|
}
|
||
|
},
|
||
|
"browserslist": [
|
||
|
"> 1%",
|
||
|
"last 2 versions",
|
||
|
"not ie <= 8"
|
||
6 years ago
|
],
|
||
|
"files": [
|
||
|
"src/*",
|
||
|
"dist/*",
|
||
|
"example/*",
|
||
|
"public/*",
|
||
|
"*.json",
|
||
|
"*.js"
|
||
6 years ago
|
]
|
||
|
}
|