forked from seiyable/vue-simple-svg
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 2.32 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
{
"name": "vue-simple-svg",
"version": "1.3.2",
"description": "A simple Vue.js plugin that allows you to use a component that loads a SVG image as an inline SVG so you can easily control its fill color from the parent component.",
"main": "dist/plugin.js",
"scripts": {
"rollup": "rollup --config rollup.config.js",
"dev-demo": "webpack-dev-server --inline --progress --config demo/build/webpack.dev.conf.js",
"start": "npm run dev-demo",
"build-demo": "node demo/build/build.js"
},
"repository": {
"type": "git",
"url": "https://github.com/seiyable/vue-simple-svg.git"
},
"keywords": [
"vue svg",
"vuejs svg",
"vue.js svg",
"vue inline svg"
],
"author": "Seiya Kobayashi",
"license": "MIT",
"devDependencies": {
"autoprefixer": "^7.2.6",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-plugin-dynamic-import-node": "^1.2.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015-rollup": "^3.0.0",
"babel-preset-stage-2": "^6.22.0",
"babel-register": "^6.22.0",
"chalk": "^2.4.1",
"chromedriver": "^2.38.2",
"copy-webpack-plugin": "^4.5.1",
"cross-spawn": "^5.0.1",
"css-loader": "^0.28.11",
"eventsource-polyfill": "^0.9.6",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^1.1.11",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-plugin": "^2.30.1",
"node-notifier": "^5.2.1",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"ora": "^1.4.0",
"portfinder": "^1.0.13",
"postcss-import": "^11.1.0",
"postcss-loader": "^2.1.4",
"reset.css": "^2.0.2",
"rimraf": "^2.6.0",
"rollup": "^0.52.3",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-uglify": "^2.0.1",
"selenium-server": "^3.11.0",
"semver": "^5.5.0",
"shelljs": "^0.7.6",
"uglifyjs-webpack-plugin": "^1.2.5",
"url-loader": "^1.1.1",
"vue": "^2.5.16",
"vue-loader": "^13.7.1",
"vue-style-loader": "^3.1.2",
"vue-template-compiler": "^2.5.16",
"webpack": "^3.11.0",
"webpack-bundle-analyzer": "^2.11.1",
"webpack-dev-server": "^2.11.2",
"webpack-merge": "^4.1.2"
},
"dependencies": {
"cssom": "^0.3.2"
}
}