forked from se-panfilov/vue-notifications
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.75 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
{
"name": "vue-notifications",
"version": "0.9.3",
"description": "Vuejs notifications",
"main": "dist/vue-notifications.es5.js",
"scripts": {
"start": "cross-env BABEL_ENV=dev && gulp",
"build": "cross-env BABEL_ENV=production && gulp make",
"docs": "rimraf ./docs/html/** && gitbook build ./docs/md/ ./docs/html",
"docs:to:gh": "rimraf ../dev-server/docs/** && cpx './docs/**' ../dev-server/docs",
"update": "ncu -a && yarn upgrade",
"upgrade": "yarn upgrade",
"test": "cross-env BABEL_ENV=test && mocha --compilers js:babel-core/register ./test/**/*.spec.js",
"lint": "./node_modules/eslint/bin/eslint.js ./src",
"sizes": "gulp sizes"
},
"repository": {
"type": "git",
"url": "git+https://github.com/se-panfilov/vue-notifications.git"
},
"keywords": [
"vue",
"toastr",
"toast",
"non-blocking",
"notifications",
"notification",
"vuejs",
"vue.js",
"messages",
"errors"
],
"author": "Sergei Panfilov <[email protected]> (https://se-panfilov.github.io)",
"license": "MIT",
"private": false,
"bugs": {
"url": "https://github.com/se-panfilov/vue-notifications/issues"
},
"homepage": "https://github.com/se-panfilov/vue-notifications#readme",
"devDependencies": {
"babel": "6.23.0",
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-loader": "8.0.0-beta.3",
"babel-plugin-transform-es3-member-expression-literals": "6.22.0",
"babel-plugin-transform-es3-property-literals": "6.22.0",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-latest": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"babel-runtime": "6.26.0",
"babelify": "8.0.0",
"babili": "0.1.4",
"browserify": "16.2.2",
"chai": "4.1.2",
"cpx": "1.5.0",
"cross-env": "5.2.0",
"eslint": "5.3.0",
"eslint-config-standard": "11.0.0",
"eslint-friendly-formatter": "4.0.1",
"eslint-plugin-import": "2.13.0",
"eslint-plugin-node": "7.0.1",
"eslint-plugin-promise": "3.8.0",
"eslint-plugin-standard": "3.1.0",
"gulp": "3.9.1",
"gulp-babel": "7.0.1",
"gulp-concat": "2.6.1",
"gulp-eslint": "5.0.0",
"gulp-notify": "3.2.0",
"gulp-plumber": "1.2.0",
"gulp-rename": "1.4.0",
"gulp-size": "3.0.0",
"gulp-sourcemaps": "2.6.4",
"gulp-strip-code": "0.1.4",
"gulp-todo": "6.0.0",
"gulp-uglify": "3.0.1",
"gulp-umd": "2.0.0",
"gulp-watch": "5.0.1",
"mocha": "5.2.0",
"require-dir": "1.0.0",
"rimraf": "2.6.2",
"run-sequence": "2.2.1",
"sinon": "6.1.4",
"sinon-chai": "3.2.0",
"source": "0.0.3",
"through2": "2.0.3",
"to-case": "2.0.0",
"vinyl-buffer": "1.0.1",
"vinyl-source-stream": "2.0.0"
},
"dependencies": {}
}