-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.34 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.34 KB
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
{
"name": "vue-tree-nav",
"version": "0.0.16",
"description": "Navigation tree menu component with nice integration with vue-router",
"main": "src/index.vue",
"repository": {
"type": "git",
"url": "git+https://github.com/marcodpt/vue-tree-nav.git"
},
"keywords": [
"navigation",
"navbar",
"nav",
"menu",
"tree",
"vuejs2",
"vue",
"sidebar",
"sidemenu",
"component",
"vue-router"
],
"author": "Marco Di Pillo Tomic",
"license": "MIT",
"bugs": {
"url": "https://github.com/marcodpt/vue-tree-nav/issues"
},
"homepage": "https://github.com/marcodpt/vue-tree-nav#readme",
"scripts": {
"start": "http-server -a localhost -p 8080",
"build": "browserify -e src/app.vue -o app.js"
},
"dependencies": {
"vue-awesome": "^3.1.0",
"vue-over-body": "0.0.5"
},
"browserify": {
"transform": [
"vueify",
"babelify"
]
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-runtime": "^6.26.0",
"babelify": "^8.0.0",
"browserify": "^16.2.3",
"http-server": "^0.11.1",
"vue": "^2.5.17",
"vue-router": "^3.0.1",
"vueify": "^9.4.1"
}
}