|
6 | 6 | "private": true,
|
7 | 7 | "scripts": {
|
8 | 8 | "dev": "node build/dev-server.js",
|
| 9 | + "start": "node build/dev-server.js", |
9 | 10 | "build": "node build/build.js"{{#unit}},
|
10 | 11 | "unit": "cross-env BABEL_ENV=test karma start test/unit/karma.conf.js --single-run"{{/unit}}{{#e2e}},
|
11 | 12 | "e2e": "node test/e2e/runner.js"{{/e2e}}{{#if_or unit e2e}},
|
12 | 13 | "test": "{{#unit}}npm run unit{{/unit}}{{#unit}}{{#e2e}} && {{/e2e}}{{/unit}}{{#e2e}}npm run e2e{{/e2e}}"{{/if_or}}{{#lint}},
|
13 | 14 | "lint": "eslint --ext .js,.vue src{{#unit}} test/unit/specs{{/unit}}{{#e2e}} test/e2e/specs{{/e2e}}"{{/lint}}
|
14 | 15 | },
|
15 | 16 | "dependencies": {
|
16 |
| - "vue": "^2.2.2"{{#router}}, |
17 |
| - "vue-router": "^2.2.0"{{/router}} |
| 17 | + "vue": "^2.3.3"{{#router}}, |
| 18 | + "vue-router": "^2.3.1"{{/router}} |
18 | 19 | },
|
19 | 20 | "devDependencies": {
|
20 | 21 | "autoprefixer": "^6.7.2",
|
|
25 | 26 | {{/lint}}
|
26 | 27 | "babel-loader": "^6.2.10",
|
27 | 28 | "babel-plugin-transform-runtime": "^6.22.0",
|
28 |
| - "babel-preset-env": "^1.2.1", |
| 29 | + "babel-preset-env": "^1.3.2", |
29 | 30 | "babel-preset-stage-2": "^6.22.0",
|
30 | 31 | "babel-register": "^6.22.0",
|
31 | 32 | "chalk": "^1.1.3",
|
32 | 33 | "connect-history-api-fallback": "^1.3.0",
|
33 | 34 | "copy-webpack-plugin": "^4.0.1",
|
34 |
| - "css-loader": "^0.26.1", |
| 35 | + "css-loader": "^0.28.0", |
35 | 36 | {{#lint}}
|
36 |
| - "eslint": "^3.14.1", |
| 37 | + "eslint": "^3.19.0", |
37 | 38 | "eslint-friendly-formatter": "^2.0.7",
|
38 |
| - "eslint-loader": "^1.6.1", |
| 39 | + "eslint-loader": "^1.7.1", |
39 | 40 | "eslint-plugin-html": "^2.0.0",
|
40 | 41 | {{#if_eq lintConfig "standard"}}
|
41 | 42 | "eslint-config-standard": "^6.2.1",
|
42 | 43 | "eslint-plugin-promise": "^3.4.0",
|
43 | 44 | "eslint-plugin-standard": "^2.0.1",
|
44 | 45 | {{/if_eq}}
|
45 | 46 | {{#if_eq lintConfig "airbnb"}}
|
46 |
| - "eslint-config-airbnb-base": "^11.0.1", |
| 47 | + "eslint-config-airbnb-base": "^11.1.3", |
47 | 48 | "eslint-import-resolver-webpack": "^0.8.1",
|
48 | 49 | "eslint-plugin-import": "^2.2.0",
|
49 | 50 | {{/if_eq}}
|
50 | 51 | {{/lint}}
|
51 | 52 | "eventsource-polyfill": "^0.9.6",
|
52 | 53 | "express": "^4.14.1",
|
53 | 54 | "extract-text-webpack-plugin": "^2.0.0",
|
54 |
| - "file-loader": "^0.10.0", |
| 55 | + "file-loader": "^0.11.1", |
55 | 56 | "friendly-errors-webpack-plugin": "^1.1.3",
|
56 |
| - "function-bind": "^1.1.0", |
57 | 57 | "html-webpack-plugin": "^2.28.0",
|
58 | 58 | "http-proxy-middleware": "^0.17.3",
|
59 | 59 | "webpack-bundle-analyzer": "^2.2.1",
|
60 | 60 | {{#unit}}
|
61 |
| - "cross-env": "^3.1.4", |
| 61 | + "cross-env": "^4.0.0", |
62 | 62 | "karma": "^1.4.1",
|
63 | 63 | "karma-coverage": "^1.1.1",
|
64 | 64 | "karma-mocha": "^1.3.0",
|
65 | 65 | "karma-phantomjs-launcher": "^1.0.2",
|
66 |
| - "karma-sinon-chai": "^1.2.4", |
| 66 | + "karma-phantomjs-shim": "^1.4.0", |
| 67 | + "karma-sinon-chai": "^1.3.1", |
67 | 68 | "karma-sourcemap-loader": "^0.3.7",
|
68 |
| - "karma-spec-reporter": "0.0.26", |
| 69 | + "karma-spec-reporter": "0.0.30", |
69 | 70 | "karma-webpack": "^2.0.2",
|
70 | 71 | "lolex": "^1.5.2",
|
71 | 72 | "mocha": "^3.2.0",
|
72 | 73 | "chai": "^3.5.0",
|
73 |
| - "sinon": "^1.17.7", |
| 74 | + "sinon": "^2.1.0", |
74 | 75 | "sinon-chai": "^2.8.0",
|
75 |
| - "inject-loader": "^2.0.1", |
76 |
| - "babel-plugin-istanbul": "^3.1.2", |
| 76 | + "inject-loader": "^3.0.0", |
| 77 | + "babel-plugin-istanbul": "^4.1.1", |
77 | 78 | "phantomjs-prebuilt": "^2.1.14",
|
78 | 79 | {{/unit}}
|
79 | 80 | {{#e2e}}
|
|
83 | 84 | "selenium-server": "^3.0.1",
|
84 | 85 | {{/e2e}}
|
85 | 86 | "semver": "^5.3.0",
|
| 87 | + "shelljs": "^0.7.6", |
86 | 88 | "opn": "^4.0.2",
|
87 | 89 | "optimize-css-assets-webpack-plugin": "^1.3.0",
|
88 |
| - "ora": "^1.1.0", |
| 90 | + "ora": "^1.2.0", |
89 | 91 | "rimraf": "^2.6.0",
|
90 |
| - "url-loader": "^0.5.7", |
91 |
| - "vue-loader": "^11.1.4", |
92 |
| - "vue-style-loader": "^2.0.0", |
93 |
| - "vue-template-compiler": "^2.2.4", |
94 |
| - "webpack": "^2.2.1", |
| 92 | + "url-loader": "^0.5.8", |
| 93 | + "vue-loader": "^12.1.0", |
| 94 | + "vue-style-loader": "^3.0.1", |
| 95 | + "vue-template-compiler": "^2.3.3", |
| 96 | + "webpack": "^2.6.1", |
95 | 97 | "webpack-dev-middleware": "^1.10.0",
|
96 |
| - "webpack-hot-middleware": "^2.16.1", |
97 |
| - "webpack-merge": "^2.6.1" |
| 98 | + "webpack-hot-middleware": "^2.18.0", |
| 99 | + "webpack-merge": "^4.1.0" |
98 | 100 | },
|
99 | 101 | "engines": {
|
100 | 102 | "node": ">= 4.0.0",
|
|
0 commit comments