-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
50 lines (50 loc) · 1.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
{
"name": "vuetify-toast-snackbar",
"version": "0.6.1",
"description": "Basic Vue toast service that uses Vuetify Snackbar component.",
"author": "eolant",
"license": "MIT",
"homepage": "https://github.com/eolant/vuetify-toast-snackbar",
"repository": {
"type": "git",
"url": "git+https://github.com/eolant/vuetify-toast-snackbar.git"
},
"main": "dist/index.js",
"module": "dist/index.esm.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": "^4.8.1",
"eslint": "^6.4.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-vue": "^5.2.3",
"rollup-plugin-vue": "^5.0.1",
"vue": "^2.6.10",
"vue-template-compiler": "^2.6.10"
},
"peerDependencies": {
"vue": "*",
"vuetify": "*"
}
}