-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.51 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
{
"name": "vue-monograms",
"version": "0.2.1",
"description": "Vue Component to generate a monogram svg shape with letters in that resembles your first/last name",
"keywords": [
"vue",
"vuejs",
"plugin",
"monograms",
"profile",
"picture"
],
"license": "MIT",
"main": "dist/vue-monograms.js",
"unpkg": "dist/vue-monograms.js",
"module": "index.js",
"author": {
"name": "Etienne Marais",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/etiennemarais/vue-monograms.git"
},
"bugs": {
"url": "https://github.com/etiennemarais/vue-monograms/issues"
},
"homepage": "https://etiennemarais.github.io/vue-monograms",
"license": "MIT",
"private": false,
"scripts": {
"webpack": "node node_modules/cross-env/dist/bin/cross-env.js NODE_ENV=development webpack --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"dev": "node node_modules/cross-env/dist/bin/cross-env.js NODE_ENV=development webpack --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"production": "node node_modules/cross-env/dist/bin/cross-env.js NODE_ENV=production webpack --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"start": "yarn dev & http-server docs/"
},
"devDependencies": {
"bulma": "^0.6.1",
"cross-env": "^5.1.3",
"http-server": "^0.10.0",
"laravel-mix": "^1.7.2",
"vue": "^2.5.13"
}
}