-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
37 lines (37 loc) · 1015 Bytes
/
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
{
"name": "avatio-avatar",
"version": "1.0.7",
"description": "VueJS 2.0. component to display SVG avatar",
"author": "Jakub Truneček <[email protected]>",
"private": false,
"license": "MIT",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/trunda/avatio-avatar.git"
},
"dependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"color": "^3.1.0"
},
"keywords": [
"vuejs",
"avatar",
"svg",
"component"
],
"scripts": {
"build:ssr": "webpack --config ./build/webpack.ssr.config.js --progress --hide-modules",
"build:client": "webpack --config ./build/webpack.client.config.js --progress --hide-modules",
"build": "npm run build:client && npm run build:ssr"
},
"devDependencies": {
"babel-loader": "^8.0.5",
"uglifyjs-webpack-plugin": "^2.1.2",
"vue-loader": "^15.7.0",
"vue-template-compiler": "^2.6.8",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3"
}
}