-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.3 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "vue-notificationx",
"author": "ColdHands",
"version": "1.2.0",
"description": "Vue notification",
"main": "./dist/bundle.js",
"license": "MIT",
"repository": "https://github.com/ColtHands/Vue-Notification.git",
"publishConfig": {
"gitRegistry": "https://npm.pkg.github.com/@colthands",
"npmRegistry": "https://registry.npmjs.org/",
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"vue",
"notification",
"vue notification",
"vue-notification",
"notify",
"vue notify",
"vue-notify",
"v-notify",
"notifications",
"vue notifications",
"pop up",
"pop-up",
"vue-pop-up"
],
"babel": {
"presets": [
"@babel/preset-env",
"@vue/babel-preset-jsx"
]
},
"jest": {
"testEnvironment": "jsdom",
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"transform": {
".*\\.(js)$": "babel-jest",
".*\\.(vue)$": "vue-jest"
},
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1"
},
"collectCoverage": false,
"collectCoverageFrom": [
"**/*.{js,vue}",
"!**/node_modules/**"
]
},
"scripts": {
"start": "webpack serve --mode=development",
"build": "webpack --mode=production",
"test": "jest",
"save": "yarn test && yarn build && git status && git add . && git commit -m save && git push"
},
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@babel/preset-flow": "^7.16.5",
"@vue/babel-helper-vue-jsx-merge-props": "^1.2.1",
"@vue/babel-preset-jsx": "^1.2.4",
"@vue/test-utils": "^1.3.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^27.4.6",
"babel-loader": "^8.1.0",
"css-loader": "^6.5.1",
"file-loader": "^6.2.0",
"jest": "^27.4.7",
"sass": "^1.45.0",
"sass-loader": "^12.4.0",
"schema-utils": "^4.0.0",
"source-map-loader": "^3.0.1",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.0",
"typescript": "^4.5.4",
"url-loader": "^4.1.1",
"uuid": "^8.3.2",
"vue": "^2.6.11",
"vue-jest": "^3.0.6",
"vue-loader": "^15.9.8",
"vue-template-compiler": "^2.6.11",
"vuex": "^3.6.2",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.6.0",
"yargs": "^17.3.0"
}
}