UNPKG

2.13 kBJSONView Raw
1{
2 "name": "vue-svg-inline-component",
3 "version": "0.1.2",
4 "description": "Vue component for inline use of SVG files.",
5 "keywords": [
6 "vue",
7 "vuejs",
8 "component",
9 "vue-component",
10 "svg",
11 "inline",
12 "svg-inline",
13 "inline-svg",
14 "vue-svg-inline-component"
15 ],
16 "homepage": "https://github.com/oliverfindl/vue-svg-inline-component#readme",
17 "bugs": {
18 "url": "https://github.com/oliverfindl/vue-svg-inline-component/issues"
19 },
20 "license": "MIT",
21 "author": "Oliver Findl",
22 "funding": "https://paypal.me/oliverfindl",
23 "files": [
24 "index.js",
25 "dist/*.min.js{,.map}",
26 "src/**/*.js"
27 ],
28 "browser": "src/vue-svg-inline-component.js",
29 "unpkg": "dist/vue-svg-inline-component.min.js",
30 "jsdelivr": "dist/vue-svg-inline-component.min.js",
31 "directories": {
32 "example": "examples"
33 },
34 "repository": {
35 "type": "git",
36 "url": "git+https://github.com/oliverfindl/vue-svg-inline-component.git"
37 },
38 "scripts": {
39 "build": "npm run build:modern && npm run build:default",
40 "build:modern": "npm run remove:modern && npx webpack --env modern --progress --color",
41 "build:default": "npm run remove:default && npx webpack --progress --color",
42 "watch:modern": "npm run build:modern -- --watch",
43 "watch:default": "npm run build:default -- --watch",
44 "remove": "npm run remove:modern && npm run remove:default",
45 "remove:modern": "npx rimraf dist/vue-svg-inline-component-modern.min.js{,.map}",
46 "remove:default": "npx rimraf dist/vue-svg-inline-component.min.js{,.map}",
47 "fix:banner": "bash ./fix_banner.sh",
48 "test": "echo \"Error: no test specified\" && exit 1"
49 },
50 "dependencies": {
51 "core-js": "^3.9.0",
52 "whatwg-fetch": "^3.6.0"
53 },
54 "devDependencies": {
55 "@babel/core": "^7.13.0",
56 "@babel/eslint-parser": "^7.13.0",
57 "@babel/preset-env": "^7.13.0",
58 "babel-loader": "^8.2.0",
59 "eslint": "^7.22.0",
60 "eslint-plugin-vue": "^7.7.0",
61 "eslint-webpack-plugin": "^2.5.0",
62 "rimraf": "^3.0.0",
63 "terser": "^5.6.0",
64 "terser-webpack-plugin": "^5.1.0",
65 "webpack": "^5.27.0",
66 "webpack-bundle-analyzer": "^4.4.0",
67 "webpack-cli": "^4.5.0"
68 },
69 "peerDependencies": {
70 "vue": "^3.0.0"
71 }
72}