forked from oliverfindl/vue-svg-inline-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.27 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
{
"name": "vue-svg-inline-loader",
"version": "1.1.3",
"description": "Webpack loader used for inline replacement of SVG images with actual content of SVG files in Vue projects.",
"main": "dist/index.min.js",
"files": [
"dist/*.js",
"src/*.js"
],
"scripts": {
"build": "npx babel src/index.js --out-file dist/index.min.js --no-comments --plugins=transform-runtime --presets=env,minify,stage-2",
"watch": "npx babel src/index.js --out-file dist/index.min.js --no-comments --plugins=transform-runtime --presets=env,minify,stage-2 --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oliverfindl/vue-svg-inline-loader.git"
},
"keywords": [
"webpack",
"loader",
"vue",
"svg",
"inline",
"sprites",
"symbols",
"vue-svg-inline-loader"
],
"author": "Oliver Findl",
"license": "MIT",
"bugs": {
"url": "https://github.com/oliverfindl/vue-svg-inline-loader/issues"
},
"homepage": "https://github.com/oliverfindl/vue-svg-inline-loader#readme",
"dependencies": {
"loader-utils": "^1.1.0",
"schema-utils": "^1.0.0",
"svgo": "^1.1.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-minify": "^0.5.0",
"babel-preset-stage-2": "^6.24.1"
}
}