-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
74 lines (74 loc) · 2.27 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
{
"name": "vue-simple-menu",
"version": "0.1.0",
"description": "vue component for fast create simple menu block",
"main": "dist/vue-simple-menu.js",
"unpkg": "dist/global/vue-simple-menu.min.js",
"files": [
"dist"
],
"scripts": {
"test": "karma start karma.conf.js",
"build": "npm run test && webpack --mode production && npm run docs",
"build:watch": "webpack --mode production --watch && webpack --config webpack.docs.config.js",
"docs": "webpack --config webpack.docs.config.js",
"dev": "webpack-dev-server --config webpack.docs.config.js --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RGRU/vue-simple-menu.git"
},
"keywords": [
"vue",
"menu",
"vue component",
"simple menu"
],
"author": "RGRU team | nanomen <dev@rg.ru> (https://github.com/RGRU/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/RGRU/vue-simple-menu/issues"
},
"homepage": "https://github.com/RGRU/vue-simple-menu#readme",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-object-rest-spread": "^7.3.1",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"babel-loader": "^8.0.5",
"chai": "^4.1.2",
"clean-webpack-plugin": "^1.0.1",
"css-loader": "^2.1.0",
"eslint": "^4.12.1",
"eslint-config-standard": "^10.2.1",
"eslint-loader": "^2.1.1",
"eslint-plugin-html": "^4.0.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"karma": "^4.0.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-webpack": "^3.0.5",
"mini-css-extract-plugin": "^0.5.0",
"mocha": "^4.0.1",
"node-sass": "^4.11.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"uglifyjs-webpack-plugin": "^2.1.1",
"vue-loader": "^15.6.2",
"vue-router": "^3.0.1",
"vue-template-compiler": "^2.5.9",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14"
},
"dependencies": {
"vue": "^2.5.9"
}
}