-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·81 lines (81 loc) · 2.37 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
{
"name": "snackbar-vue",
"version": "1.0.0",
"description": "Plugin for displaying material design-style snackbars with customizable styles, actions and a lot more... Sponsored by DPLYR.dev ",
"author": "Ahmed M. Gamal from DPLYR.dev <[email protected]>",
"license": "MIT",
"keywords": [
"vue plugin",
"snackbar",
"material",
"vue"
],
"files": [
"dist",
"src",
"LICENSE",
"README.md"
],
"main": "dist/vue-snack.min.js",
"repository": {
"type": "git",
"url": "https://github.com/zerodois/vue-snack"
},
"module": "components/index.js",
"scripts": {
"build": "run-s build:**",
"build:dev": "cross-env NODE_ENV=development rollup -c",
"build:prod": "cross-env NODE_ENV=production rollup -c",
"test": "cross-env LC_ALL=C karma start"
},
"peerDependencies": {
"vue": "^2.4.4",
"vue-template-compiler": "^2.6.11"
},
"devDependencies": {
"autoprefixer": "^7.1.4",
"babel-core": "^6.26.3",
"babel-eslint": "^8.0.0",
"babel-loader": "^7.1.4",
"babel-plugin-external-helpers": "^6.22.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.1.2",
"cross-env": "^5.0.5",
"es6-promise": "^4.1.1",
"eslint-plugin-html": "^3.2.1",
"karma": "^1.7.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.4",
"karma-phantomjs-launcher": "^1.0.4",
"karma-phantomjs-shim": "^1.0.4",
"karma-rollup-preprocessor": "^5.0.1",
"mocha": "^3.5.3",
"npm-run-all": "^4.1.1",
"postcss": "^6.0.11",
"postcss-csso": "^2.0.0",
"rollup": "^0.50.0",
"rollup-copy-plugin": "0.0.1",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-buble": "^0.15.0",
"rollup-plugin-commonjs": "^8.2.1",
"rollup-plugin-eslint": "^4.0.0",
"rollup-plugin-filesize": "^1.4.2",
"rollup-plugin-includepaths": "^0.2.2",
"rollup-plugin-inject": "^2.0.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-root-import": "^0.2.2",
"rollup-plugin-sass": "^0.5.3",
"rollup-plugin-uglify": "^2.0.1",
"rollup-plugin-vue": "^5.1.9",
"sinon": "^3.2.1",
"uglify-es": "^3.0.28",
"vue": "^2.4.4"
}
}