forked from s4l1h/vue-toastr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.28 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-toastr",
"version": "2.0.16",
"description": "Toastr for Vue.js no jquery dependencies",
"main": "./dist/vue-toastr.js",
"dependencies": {},
"devDependencies": {
"babel-core": "^6.1.21",
"babel-loader": "^6.1.0",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-lodash": "^2.0.1",
"babel-plugin-transform-runtime": "^6.1.18",
"babel-preset-es2015": "^6.1.18",
"babel-runtime": "^5.8.38",
"cross-env": "^3.1.2",
"css-loader": "^0.25.0",
"extract-text-webpack-plugin": "^1.0.1",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"node-sass": "^4.5.3",
"sass-loader": "4.1.1",
"style-loader": "^0.13.1",
"vue-hot-reload-api": "^2.0.6",
"vue-html-loader": "^1.2.3",
"vue-loader": "^9.x",
"vue-style-loader": "^1.0.0",
"webpack": "^1.15.0",
"webpack-dev-server": "^1.16.2",
"eslint": "^4.12.1",
"eslint-config-standard": "^10.2.1",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-html": "^4.0.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^3.0.1"
},
"scripts": {
"dev": "webpack-dev-server --inline --hot --quiet --config build/webpack.dev.config.js",
"build": "webpack --progress --hide-modules --config build/webpack.dev.config.js",
"build_min": "cross-env NODE_ENV=production webpack --progress --hide-modules --config build/webpack.config.min.js",
"build_combine": "cross-env NODE_ENV=production webpack --progress --hide-modules --config build/webpack.config.combine.js",
"clear": "rm dist/*",
"buildAll": "npm run build && npm run build_min && npm run build_combine"
},
"repository": {
"type": "git",
"url": "git+https://github.com/s4l1h/vue-toastr.git"
},
"keywords": [
"vuejs",
"vue",
"vue-component",
"component"
],
"author": "s4l1h",
"license": "MIT",
"bugs": {
"url": "https://github.com/s4l1h/vue-toastr/issues"
},
"homepage": "https://github.com/s4l1h/vue-toastr#readme"
}