-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
46 lines (46 loc) · 1.1 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
{
"name": "v-tostini",
"version": "1.5.1",
"description": "Toasts notifications plugin for Vue.js 2.x",
"main": "dist/v-tostini.js",
"scripts": {
"build": "npx rollup -c",
"lint": "npx eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/marverix/v-tostini.git"
},
"keywords": [
"vue",
"vue-plugin",
"toasts",
"toaster",
"tostini",
"notifications"
],
"author": "Marek Sierociński <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/marverix/v-tostini/issues"
},
"homepage": "https://github.com/marverix/v-tostini#readme",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"chai": "^4.1.2",
"core-js": "^3.6.5",
"eslint": "^6.8.0",
"finka": "^1.4.0",
"husky": "^4.3.0",
"mocha": "^7.2.0",
"rollup": "^2.32.1",
"rollup-plugin-terser": "^7.0.2"
},
"dependencies": {
"vue": "^2.6.12"
}
}