-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
50 lines (50 loc) · 1.09 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
{
"name": "vue-nav",
"description": "A vue navigation manager",
"version": "1.1.5",
"author": {
"name": "nearspears",
"email": "wwjgoodogo@gmail.com"
},
"keywords": [
"vue",
"navigation",
"router",
"app"
],
"main": "dist/vue-nav.js",
"module": "src/index.js",
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server --open --hot",
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nearspears/vue-nav"
},
"files": [
"dist",
"src",
"LICENSE",
"README.md",
"README_CN.md"
],
"dependencies": {
"vue": "^2.3.3",
"vue-router": "^2.7.0",
"vuex": "^2.3.1"
},
"devDependencies": {
"babel-core": "^6.0.0",
"babel-loader": "^6.0.0",
"babel-preset-env": "^1.5.1",
"cross-env": "^3.0.0",
"css-loader": "^0.25.0",
"file-loader": "^0.9.0",
"vue-loader": "^12.1.0",
"vue-template-compiler": "^2.3.3",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.4.5"
}
}