-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
109 lines (109 loc) · 2.79 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "vue-component-router",
"version": "0.1.17",
"description": "Component-based routing for vue. Inspired by react router 4",
"main": "dist/index.cjs.js",
"files": [
"dist/index.cjs.js",
"src"
],
"author": "Avi Block <[email protected]>",
"license": "MIT",
"repository": "[email protected]:blocka/vue-component-router.git",
"scripts": {
"lint": "eslint src/",
"build": "npm run lint && bili",
"dev": "NODE_ENV=development webpack-dev-server --watch --config build/webpack.conf.js --inline --hot",
"prod": "NODE_ENV=production npm run build && webpack-dev-server --watch --config build/webpack.conf.js --inline --hot",
"docs": "docute ./docs",
"test:unit": "NODE_ENV=testing karma start test/karma.conf.js"
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": [
"vue"
],
"plugins": [
"html",
"vue"
],
"rules": {
"vue/jsx-uses-vars": 2,
"comma-dangle": [
"error",
"always-multiline"
]
}
},
"babel": {
"presets": [
[
"es2015",
{
"modules": false
}
],
"stage-2"
],
"plugins": [],
"comments": false,
"env": {
"testing": {
"presets": [
"es2015",
"stage-2"
]
}
}
},
"dependencies": {
"history": "4.4.0",
"path-to-regexp": "^2.1.0",
"query-string": "^5.0.1"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-2": "^6.24.1",
"babel-preset-stage-3": "^6.22.0",
"bili": "^1.3.0",
"chai": "^3.5.0",
"css-loader": "^0.26.2",
"eslint": "^3.16.1",
"eslint-config-vue": "^2.0.2",
"eslint-friendly-formatter": "^2.0.7",
"eslint-loader": "^1.6.3",
"eslint-plugin-html": "^2.0.1",
"eslint-plugin-vue": "^2.0.1",
"friendly-errors-webpack-plugin": "^1.4.0",
"inject-loader": "2.0.1",
"karma": "^1.4.1",
"karma-chrome-launcher": "^2.0.0",
"karma-mocha": "^1.3.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "^0.0.30",
"karma-webpack": "^2.0.2",
"mocha": "^3.2.0",
"mocha-css": "^1.0.1",
"rollup": "^0.41.4",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-buble": "^0.15.0",
"rollup-plugin-commonjs": "^7.0.0",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-plugin-vue": "^2.5.4",
"style-loader": "^0.13.2",
"testcafe": "^0.13.0",
"testdouble": "^1.10.2",
"testdouble-chai": "^0.5.0",
"uglifyjs": "^2.4.11",
"vue": "^2.1.7",
"vue-loader": "^11.1.2",
"vue-template-compiler": "^2.1.7",
"webpack": "2.2.1",
"webpack-dev-server": "^2.4.1",
"webpack-merge": "^3.0.0"
}
}