forked from ankurk91/vue-toast-notification
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.04 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "vue-toast-notification",
"version": "3.0.4",
"description": "Vue.js toast notification plugin",
"main": "dist/index.js",
"types": "./types/toast.d.ts",
"browser": "dist/index.min.js",
"style": "dist/theme-default.css",
"files": [
"src",
"dist",
"types"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ankurk91/vue-toast-notification.git"
},
"keywords": [
"vue",
"toast",
"growl",
"notice",
"notification"
],
"author": "ankurk91",
"license": "MIT",
"bugs": {
"url": "https://github.com/ankurk91/vue-toast-notification/issues"
},
"homepage": "https://github.com/ankurk91/vue-toast-notification",
"scripts": {
"test": "jest",
"test:watch": "npm run test --watch --notify",
"start": "npm run dev",
"dev": "cross-env NODE_ENV=development webpack serve --hot --config=webpack.config.dev.js",
"docs": "cross-env NODE_ENV=production webpack --config=webpack.config.dev.js --progress --mode=production",
"build": "cross-env NODE_ENV=production webpack --progress --mode=production",
"prepublishOnly": "npm run test && npm run build"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@vue/compiler-sfc": "^3.2.45",
"@vue/test-utils": "^2.2.7",
"@vue/vue3-jest": "^29.2.2",
"babel-jest": "^29.3.1",
"babel-loader": "^9.1.2",
"bootstrap": "^4.6.2",
"cross-env": "^7.0.3",
"css-loader": "^6.7.3",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"mini-css-extract-plugin": "^2.7.2",
"mitt": "^3.0.0",
"sass": "~1.57.1",
"sass-loader": "^13.2.0",
"style-loader": "^3.3.1",
"svg-url-loader": "^8.0.0",
"vue": "^3.2.45",
"vue-loader": "^17.0.1",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1",
"webpack-remove-empty-scripts": "^1.0.1"
},
"peerDependencies": {
"vue": "^3.0"
},
"engines": {
"node": ">=12.15.0"
}
}