2
0
mirror of https://github.com/tenrok/vue-meta.git synced 2026-06-22 14:40:34 +03:00

package: Upgrade dependencies

This commit is contained in:
Atinux
2017-11-06 12:32:02 +01:00
parent 4e05124b4c
commit be9cff3bd3
4 changed files with 988 additions and 813 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
{ {
"presets": ["es2015"], "presets": ["env"],
"env": { "env": {
"test": { "test": {
"plugins": ["istanbul"] "plugins": ["istanbul"]
+21 -21
View File
@@ -4,6 +4,26 @@
"version": "1.2.0", "version": "1.2.0",
"author": "Declan de Wet <declandewet@me.com>", "author": "Declan de Wet <declandewet@me.com>",
"bugs": "https://github.com/declandewet/vue-meta/issues", "bugs": "https://github.com/declandewet/vue-meta/issues",
"scripts": {
"build": "rollup -c",
"codecov": "codecov",
"deploy": "npm version",
"dev": "babel-node examples/server.js",
"lint": "standard --verbose | snazzy",
"minify": "uglifyjs lib/vue-meta.js -cm --comments -o lib/vue-meta.min.js",
"postbuild": "npm run minify",
"postdeploy": "git push origin master --follow-tags && npm run release",
"postversion": "npm run update-cdn && git add . && git commit -m \":ship: CDN update\"",
"prebuild": "rimraf lib",
"predeploy": "git checkout master && git pull -r",
"prerelease": "npm run build",
"pretest": "npm run lint",
"preversion": "npm run toc",
"release": "npm publish",
"test": "cross-env NODE_ENV=test karma start karma.conf.js",
"toc": "doctoc README.md --title '# Table of Contents'",
"update-cdn": "babel-node scripts/update-cdn.js"
},
"dependencies": { "dependencies": {
"deepmerge": "^2.0.0", "deepmerge": "^2.0.0",
"lodash.isplainobject": "^4.0.6", "lodash.isplainobject": "^4.0.6",
@@ -14,7 +34,7 @@
"babel-core": "^6.25.0", "babel-core": "^6.25.0",
"babel-loader": "^7.1.1", "babel-loader": "^7.1.1",
"babel-plugin-istanbul": "^4.1.4", "babel-plugin-istanbul": "^4.1.4",
"babel-preset-es2015": "^6.24.1", "babel-preset-env": "^1.6.1",
"babel-register": "^6.24.1", "babel-register": "^6.24.1",
"chai": "^4.1.1", "chai": "^4.1.1",
"codecov": "^3.0.0", "codecov": "^3.0.0",
@@ -85,26 +105,6 @@
"url": "git@github.com:declandewet/vue-meta.git", "url": "git@github.com:declandewet/vue-meta.git",
"type": "git" "type": "git"
}, },
"scripts": {
"build": "rollup -c",
"codecov": "codecov",
"deploy": "npm version",
"dev": "babel-node examples/server.js",
"lint": "standard --verbose | snazzy",
"minify": "uglifyjs lib/vue-meta.js -cm --comments -o lib/vue-meta.min.js",
"postbuild": "npm run minify",
"postdeploy": "git push origin master --follow-tags && npm run release",
"postversion": "npm run update-cdn && git add . && git commit -m \":ship: CDN update\"",
"prebuild": "rimraf lib",
"predeploy": "git checkout master && git pull -r",
"prerelease": "npm run build",
"pretest": "npm run lint",
"preversion": "npm run toc",
"release": "npm publish",
"test": "cross-env NODE_ENV=test karma start karma.conf.js",
"toc": "doctoc README.md --title '# Table of Contents'",
"update-cdn": "babel-node scripts/update-cdn.js"
},
"standard": { "standard": {
"globals": [ "globals": [
"Vue", "Vue",
+1 -1
View File
@@ -19,7 +19,7 @@ export default {
banner: ` banner: `
/** /**
* vue-meta v${pkg.version} * vue-meta v${pkg.version}
* (c) ${new Date().getFullYear()} Declan de Wet * (c) ${new Date().getFullYear()} Declan de Wet & Atinux
* @license MIT * @license MIT
*/ */
`.replace(/ {4}/gm, '').trim() `.replace(/ {4}/gm, '').trim()
+965 -790
View File
File diff suppressed because it is too large Load Diff