forked from eolant/vuetify-toast-snackbar
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
57 lines (57 loc) · 1.5 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
{
"name": "vuetify-toast-snackbar-ng",
"version": "0.7.5",
"description": "Basic Vue toast service that uses Vuetify Snackbar component for Vuetify 2.3+",
"author": "hanjiawei",
"license": "MIT",
"homepage": "https://github.com/jaredhan418/vuetify-toast-snackbar",
"repository": {
"type": "git",
"url": "git+https://github.com/jaredhan418/vuetify-toast-snackbar.git"
},
"main": "dist/index.js",
"module": "dist/index.es.js",
"browser": "dist/index.umd.js",
"unpkg": "dist/index.umd.min.js",
"types": "src/index.d.ts",
"files": [
"dist",
"src",
"LICENSE",
"README.md"
],
"scripts": {
"build": "npm run build:module && npm run build:browser",
"build:module": "bili --format cjs --format es",
"build:browser": "bili --format umd --format umd-min --module-name vuetifyToast",
"lint": "eslint --ext js --ext vue src",
"lint:fix": "npm run lint -- --fix",
"prepublish": "npm run build"
},
"keywords": [
"vuetify",
"toast",
"snackbar"
],
"devDependencies": {
"bili": "^5.0.5",
"eslint": "^7.7.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-vue": "^6.2.2",
"rollup-plugin-vue": "^5.0.1",
"vue": "^2.6.11",
"vue-template-compiler": "^2.6.11"
},
"peerDependencies": {
"vue": "*",
"vuetify": "*"
},
"bugs": {
"url": "https://github.com/jaredhan418/vuetify-toast-snackbar/issues"
},
"directories": {
"doc": "docs"
},
"dependencies": {}
}