-
Notifications
You must be signed in to change notification settings - Fork 76
/
package.json
73 lines (73 loc) · 2.02 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
{
"name": "vue-toast-notification",
"version": "3.1.3",
"description": "Vue.js toast notification plugin",
"main": "dist/index.js",
"types": "./types/toast.d.ts",
"style": "dist/theme-bootstrap.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.25.2",
"@babel/preset-env": "^7.25.4",
"@vue/compiler-sfc": "^3.5.6",
"@vue/test-utils": "^2.4.6",
"@vue/vue3-jest": "^29.2.6",
"babel-jest": "^29.7.0",
"babel-loader": "^9.2.1",
"bootstrap": "^4.6.2",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"file-loader": "^6.2.0",
"html-bundler-webpack-plugin": "^4.1.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"mini-css-extract-plugin": "^2.9.1",
"mitt": "^3.0.1",
"sass": "~1.78.0",
"sass-loader": "^16.0.1",
"style-loader": "^4.0.0",
"svg-url-loader": "^8.0.0",
"vue": "^3.5.6",
"vue-loader": "^17.4.2",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0",
"webpack-remove-empty-scripts": "^1.0.4"
},
"peerDependencies": {
"vue": "^3.0"
},
"engines": {
"node": ">=12.15.0"
}
}