-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 1.62 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
{
"name": "vue-notibar",
"description": "Notification bar for the Vue apps",
"version": "0.3.7",
"keywords": [
"snackbar",
"notification",
"toast",
"vue",
"plugin"
],
"type": "module",
"main": "src/index.js",
"typings": "typings/index.d.ts",
"unpkg": "dist/vue-notibar.min.js",
"license": "MIT",
"scripts": {
"build": "rollup --config --bundleConfigAsCjs",
"watch": "rollup --config --watch",
"test": "jest",
"test:appveyor": "jest --reporters=\"default\" --reporters=\"jest-junit\"",
"eslint": "eslint src/* test/*"
},
"author": "Boris Maslennikov <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/b-maslennikov/vue-notibar.git"
},
"homepage": "https://github.com/b-maslennikov/vue-notibar",
"bugs": {
"url": "https://github.com/b-maslennikov/vue-notibar/issues"
},
"dependencies": {
"vue": "~2.7.16"
},
"devDependencies": {
"@babel/core": "~7.23.9",
"@babel/eslint-parser": "~7.23.10",
"@babel/preset-env": "~7.23.9",
"@rollup/plugin-eslint": "~9.0.5",
"@rollup/plugin-node-resolve": "~15.2.4",
"@rollup/plugin-terser": "~0.4.4",
"@vue/compiler-sfc": "~2.7.16",
"@vue/test-utils": "~1.3.6",
"babel-jest": "~29.7.0",
"eslint": "~8.55.0",
"eslint-plugin-vue": "~9.19.2",
"jest": "~29.7.0",
"jest-environment-jsdom": "~29.7.0",
"jest-junit": "~16.0.0",
"rollup": "~4.24.0",
"rollup-plugin-cleanup": "~3.2.1",
"rollup-plugin-scss": "~4.0.0",
"rollup-plugin-vue2": "~0.8.1",
"sass": "~1.69.7",
"vue-jest": "~3.0.7",
"vue-template-compiler": "~2.7.15"
},
"jest-junit": {
"classNameTemplate": "{classname}",
"titleTemplate": "{title}"
}
}