-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
88 lines (88 loc) · 2.83 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
{
"name": "vue-embed",
"version": "2.1.1",
"description": "Embed component is based on [embed.js](https://github.com/ritz078/embed.js) for Vue 2.x.",
"main": "dist/v-embed.ssr.js",
"module": "dist/v-embed.esm.js",
"unpkg": "dist/v-embed.min.js",
"repository": "[email protected]:Gomah/vue-embed.git",
"author": {
"name": "Gomah <[email protected]>"
},
"license": "MIT",
"files": [
"dist/*",
"src/**/*.vue"
],
"scripts": {
"build": "cross-env NODE_ENV=production rollup --config build/rollup.config.js",
"build:ssr": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format cjs",
"build:es": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format es",
"build:unpkg": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format iife",
"prepublishOnly": "yarn build",
"release": "yarn test && standard-version && git push --follow-tags && npm publish",
"test": "yarn test:lint && yarn test:unit",
"test:lint": "eslint --ext .ts,.js,.vue src/",
"test:unit": "cross-env BABEL_ENV=test jest --coverage"
},
"keywords": [
"vue",
"vue-embed",
"plugins",
"emoji",
"emoticon",
"embed.js",
"embed",
"javascript",
"html"
],
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@vue/test-utils": "^1.0.0-beta.29",
"babel-eslint": "^10.0.3",
"babel-jest": "^26.0.1",
"cross-env": "^7.0.0",
"eslint": "^7.14.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^7.1.0",
"eslint-import-resolver-webpack": "^0.13.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-vue": "^7.0.0",
"husky": "^7.0.0",
"jest": "^24.9.0",
"jest-serializer-vue": "^2.0.2",
"minimist": "^1.2.0",
"prettier": "^1.18.2",
"rollup": "^2.3.2",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^7.0.1",
"rollup-plugin-typescript": "^1.0.1",
"rollup-plugin-vue": "^5.1.5",
"standard-version": "^9.0.0",
"typescript": "^4.0.2",
"vue": "^2.6.10",
"vue-jest": "^4.0.0-beta.2",
"vue-template-compiler": "^2.6.10"
},
"dependencies": {
"embed-js": "^5.0.4",
"embed-plugin-emoji": "^5.0.4",
"embed-plugin-facebook": "^5.0.4",
"embed-plugin-github": "^5.0.4",
"embed-plugin-highlight": "^5.0.4",
"embed-plugin-instagram": "^5.0.4",
"embed-plugin-map": "^5.0.4",
"embed-plugin-media": "^5.0.4",
"embed-plugin-noembed": "^5.0.4",
"embed-plugin-twitter": "^5.0.4",
"embed-plugin-url": "^5.0.4",
"embed-plugin-youtube": "^5.0.4"
}
}