-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
41 lines (41 loc) · 925 Bytes
/
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
{
"name": "vue-route-middleware",
"version": "1.0.7",
"description": "Make complex route middleware logic look easy and readable!",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/lionix-team/vue-route-middleware.git"
},
"scripts": {
"prepublishOnly": "babel ./src --out-dir ./dist -s inline"
},
"keywords": [
"vue",
"vuejs",
"router",
"routes",
"vue-router",
"middleware"
],
"contributors": [
{
"name": "Lionix Team",
"email": "[email protected]"
},
{
"name": "Stas Vartanyan",
"email": "[email protected]"
}
],
"license": "MIT",
"homepage": "https://github.com/lionix-team/vue-route-middleware#readme",
"dependencies": {
"vue": "^2.6.10",
"vue-router": "^3.1.3"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1"
}
}