-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
115 lines (115 loc) · 3.42 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "vue-on-toast",
"version": "1.0.1",
"description": "A powerful, compact, Server Side Rendering supported Toast Notification component for Vue 2",
"main": "dist/vue-on-toast.common.js",
"module": "dist/vue-on-toast.esm.js",
"unpkg": "dist/vue-on-toast.js",
"scripts": {
"dev": "node examples/server.js",
"dev:dist": "rollup -wm -c build/dev.config.js",
"build": "node build/build.js",
"unit": "cross-env BABEL_ENV=test karma start test/unit/karma.conf.js --single-run --log-level debug",
"test": "npm run unit",
"lint": "eslint --ext .js,.vue src test/unit/specs",
"test:types": "tsc -p types/test"
},
"keywords": [
"Vue",
"VueJS",
"Vue2",
"Vue",
"2",
"toast",
"toaster",
"notification",
"alert",
"growl"
],
"author": "Stabzs",
"license": "MIT",
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-eslint": "8.2.1",
"babel-loader": "7.1.2",
"babel-plugin-css-modules-transform": "1.2.7",
"babel-plugin-istanbul": "^4.1.1",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-runtime": "6.22.0",
"babel-preset-env": "1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow-vue": "^1.0.0",
"babel-preset-stage-2": "6.22.0",
"babel-register": "6.22.0",
"chai": "3.5.0",
"chromedriver": "2.41.0",
"clean-css": "4.1.7",
"coveralls": "3.0.2",
"cross-env": "5.0.1",
"cross-spawn": "^5.0.1",
"css-loader": "^0.28.0",
"es6-promise": "^4.0.5",
"eslint": "^3.0.1",
"eslint-config-standard": "^6.2.1",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-flowtype": "^2.34.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"eslint-plugin-vue-libs": "^1.2.0",
"express": "^4.14.0",
"express-urlrewrite": "^1.2.0",
"extract-text-webpack-plugin": "2.1.2",
"flow-bin": "^0.48.0",
"inject-loader": "^3.0.0",
"jasmine": "2.6.0",
"karma": "3.0.0",
"karma-chrome-launcher": "2.2.0",
"karma-coverage": "1.1.2",
"karma-mocha": "1.3.0",
"karma-remap-coverage": "0.1.5",
"karma-sinon-chai": "2.0.2",
"karma-sourcemap-loader": "0.3.7",
"karma-spec-reporter": "0.0.32",
"karma-webpack": "2.0.2",
"lolex": "^1.5.2",
"mocha": "5.2.0",
"node-sass": "4.9.3",
"opn": "5.1.0",
"postcss-loader": "2.0.6",
"rollup": "0.56.1",
"rollup-plugin-babel": "3.0.3",
"rollup-plugin-buble": "0.19.2",
"rollup-plugin-commonjs": "8.3.0",
"rollup-plugin-flow-no-whitespace": "1.0.0",
"rollup-plugin-node-resolve": "3.0.3",
"rollup-plugin-replace": "2.0.0",
"rollup-plugin-scss": "0.4.0",
"rollup-plugin-stylus-css-modules": "1.5.0",
"rollup-plugin-vue": "2.5.4",
"rollup-watch": "4.3.1",
"sass-loader": "6.0.6",
"selenium-server": "3.0.1",
"semver": "^5.3.0",
"shelljs": "^0.7.6",
"sinon": "^6.2.0",
"sinon-chai": "^2.8.0",
"stylus": "0.54.5",
"stylus-loader": "3.0.1",
"typescript": "^2.4.1",
"uglify-js": "^3.0.17",
"vue": "2.4.4",
"vue-loader": "^12.0.2",
"vue-server-renderer": "2.4.4",
"vue-template-compiler": "2.4.4",
"webpack": "3.11.0",
"webpack-dev-middleware": "2.0.5",
"webpack-dev-server": "^2.11.2",
"webpack-hot-middleware": "2.21.0",
"webpack-merge": "4.1.1"
},
"peerDependencies": {
"vue": "^2.3.4"
}
}