-
-
Notifications
You must be signed in to change notification settings - Fork 197
/
package.json
87 lines (87 loc) · 2.47 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
{
"name": "vue-social-sharing",
"version": "3.0.9",
"description": "A Vue.js component for sharing links to social networks",
"author": "Nicolas Beauvais <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/nicolasbeauvais/vue-social-sharing#readme",
"bugs": {
"url": "https://github.com/nicolasbeauvais/vue-social-sharing/issues"
},
"keywords": [
"nuxtjs",
"plugin",
"renderless-components",
"share",
"social",
"social-network",
"social-networks",
"social-shares",
"ssr",
"vue",
"vue-component",
"vue-components",
"vuejs",
"vuejs-components"
],
"main": "dist/vue-social-sharing.js",
"types": "types/index.d.ts",
"files": [
"dist",
"src",
"nuxt",
"vetur",
"types/*.d.ts"
],
"scripts": {
"test": "jest tests",
"lint": "eslint --ext js --ext vue src nuxt examples .storybook tests",
"storybook": "start-storybook",
"build": "yarn run build-dist && yarn run build-storybook",
"build-dist": "cross-env NODE_ENV=production webpack --config webpack.config.js",
"build-storybook": "build-storybook -c .storybook -o docs",
"example": "poi -s examples/index.js",
"release": "yarn run lint && yarn run test && conventional-github-releaser -p angular && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nicolasbeauvais/vue-social-sharing.git"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@storybook/addon-notes": "^5.1.10",
"@storybook/vue": "^5.1.10",
"@vue/test-utils": "^1.0.2",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.0.1",
"babel-loader": "^8.0.6",
"babel-preset-vue": "^2.0.2",
"conventional-github-releaser": "^3.1.3",
"cross-env": "^7.0.3",
"eslint": "^7.0.0",
"eslint-config-vue": "^2.0.2",
"eslint-plugin-jest": "^23.11.0",
"eslint-plugin-vue": "^6.2.2",
"husky": "^3.0.2",
"jest": "^26.0.1",
"lint-staged": "^9.2.1",
"poi": "^12.7.1",
"uglifyjs-webpack-plugin": "^2.2.0",
"vue": "^2.6.10",
"vue-html-loader": "^1.2.4",
"vue-loader": "^15.7.1",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.39.1",
"webpack-cli": "^3.3.6"
},
"peerDependencies": {
"vue": "^2.6.10"
},
"vetur": {
"tags": "vetur/vetur-tags.json"
}
}