This repository has been archived by the owner on Nov 5, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
70 lines (70 loc) · 1.94 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
{
"name": "vue-breadcrumbs",
"version": "1.2.0",
"description": "Breadcrumbs for vue.js",
"author": {
"name": "Sam Turrell",
"email": "[email protected]",
"url": "http://samturrell.co.uk"
},
"bugs": {
"url": "https://github.com/samturrell/vue-breadcrumbs/issues"
},
"devDependencies": {
"babel-core": "^6.2.1",
"babel-loader": "^6.2.0",
"babel-plugin-espower": "^2.0.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-es2015-rollup": "^1.0.0",
"changelog": "github:dylang/changelog",
"eslint": "^2.8.0",
"eslint-config-vue": "^1.0.0",
"eslint-loader": "^1.3.0",
"istanbul-instrumenter-loader": "^0.1.3",
"json-loader": "^0.5.4",
"karma": "^0.13.9",
"karma-coverage": "^0.5.2",
"karma-mocha": "^0.2.0",
"karma-mocha-reporter": "^1.1.1",
"karma-phantomjs-launcher": "^0.2.1",
"karma-sourcemap-loader": "^0.3.5",
"karma-webpack": "^1.7.0",
"mocha": "^2.3.4",
"mocha-loader": "^0.7.1",
"phantomjs": "^1.9.18",
"power-assert": "^1.2.0",
"rollup": "^0.21.1",
"rollup-plugin-babel": "^2.2.0",
"rollup-plugin-replace": "^1.1.0",
"uglify-js": "^2.6.1",
"vue": "^2.0.0",
"webpack": "^1.12.9",
"webpack-dev-server": "^1.14.0"
},
"files": [
"dist/vue-breadcrumbs.js",
"dist/vue-breadcrumbs.min.js",
"dist/vue-breadcrumbs.common.js",
"src"
],
"homepage": "https://github.com/samturrell/vue-breadcrumbs#readme",
"jsnext:main": "src/index.js",
"keywords": [
"breadcrumbs",
"plugin",
"vue",
"vuejs"
],
"license": "MIT",
"main": "dist/vue-breadcrumbs.common.js",
"repository": {
"type": "git",
"url": "git+https://github.com/samturrell/vue-breadcrumbs.git"
},
"scripts": {
"build": "node config/build.js",
"clean": "rm -rf coverage && rm -rf dist",
"dev": "webpack-dev-server --quiet --config config/webpack.dev.conf.js --host 0.0.0.0",
"lint": "eslint src test config"
}
}