-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.13 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
{
"name": "vue-svga",
"description": "Svga component for Vue",
"version": "1.0.0",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git@github.com:JayZangwill/vue-svga.git"
},
"bugs": {
"url": "https://github.com/JayZangwill/vue-svga/issues"
},
"files": [
"dist/",
"src/"
],
"homepage": "https://github.com/JayZangwill/vue-svga#readme",
"author": "Jay Zangwill",
"license": "MIT",
"keywords": [
"vue-svga",
"vue svga",
"svga",
"vue"
],
"scripts": {
"dev": "rollup -w --config rollup.config.js",
"prod": "rollup --config rollup.config.js"
},
"dependencies": {
"svga.lite": "^1.2.1"
},
"devDependencies": {
"@babel/core": "^7.8.6",
"@babel/plugin-transform-classes": "^7.8.6",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.6",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"rollup": "^1.32.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-terser": "^5.2.0",
"rollup-plugin-vue": "^5.1.6",
"vue": "^2.6.11",
"vue-template-compiler": "^2.6.11"
}
}