mirror of
https://github.com/tenrok/vue-meta.git
synced 2026-06-23 07:10:33 +03:00
Merge branch 'next'
This commit is contained in:
+106
-103
@@ -1,93 +1,14 @@
|
||||
{
|
||||
"name": "vue-meta",
|
||||
"description": "manage page meta info in Vue 2.0 server-rendered apps",
|
||||
"version": "1.6.0",
|
||||
"author": "Declan de Wet <declandewet@me.com>",
|
||||
"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": {
|
||||
"deepmerge": "^3.2.0",
|
||||
"lodash.isplainobject": "^4.0.6",
|
||||
"lodash.uniqueid": "^4.0.1",
|
||||
"object-assign": "^4.1.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/cli": "^7.2.3",
|
||||
"@babel/core": "^7.4.0",
|
||||
"@babel/node": "^7.2.2",
|
||||
"@babel/preset-env": "^7.4.2",
|
||||
"@babel/register": "^7.4.0",
|
||||
"babel-loader": "^8.0.5",
|
||||
"babel-plugin-istanbul": "^5.1.1",
|
||||
"chai": "^4.2.0",
|
||||
"codecov": "^3.2.0",
|
||||
"cross-env": "^5.2.0",
|
||||
"css-loader": "^2.1.1",
|
||||
"doctoc": "^1.4.0",
|
||||
"es6-promise": "^4.2.6",
|
||||
"express": "^4.16.4",
|
||||
"express-urlrewrite": "^1.2.0",
|
||||
"file-loader": "^3.0.1",
|
||||
"karma": "^4.0.1",
|
||||
"karma-chai": "^0.1.0",
|
||||
"karma-coverage": "^1.1.2",
|
||||
"karma-mocha": "^1.3.0",
|
||||
"karma-mocha-reporter": "^2.2.5",
|
||||
"karma-phantomjs-launcher": "^1.0.4",
|
||||
"karma-sourcemap-loader": "^0.3.7",
|
||||
"karma-webpack": "^3.0.5",
|
||||
"mocha": "^6.0.2",
|
||||
"phantomjs-prebuilt": "^2.1.16",
|
||||
"rimraf": "^2.6.3",
|
||||
"rollup": "^1.7.4",
|
||||
"rollup-plugin-buble": "^0.19.6",
|
||||
"rollup-plugin-commonjs": "^9.2.2",
|
||||
"rollup-plugin-json": "^4.0.0",
|
||||
"rollup-plugin-node-resolve": "^4.0.1",
|
||||
"snazzy": "^8.0.0",
|
||||
"standard": "^12.0.1",
|
||||
"uglify-js": "^3.5.2",
|
||||
"update-section": "^0.3.3",
|
||||
"vue": "^2.6.10",
|
||||
"vue-loader": "^15.7.0",
|
||||
"vue-router": "^3.0.2",
|
||||
"vue-server-renderer": "^2.6.10",
|
||||
"vue-template-compiler": "^2.6.10",
|
||||
"vuex": "^3.1.0",
|
||||
"webpack": "^4.29.6",
|
||||
"webpack-dev-server": "^3.2.1"
|
||||
},
|
||||
"files": [
|
||||
"lib",
|
||||
"types/index.d.ts",
|
||||
"types/vue.d.ts"
|
||||
],
|
||||
"homepage": "https://github.com/declandewet/vue-meta",
|
||||
"description": "Manage page metadata in Vue.js components with ssr support",
|
||||
"keywords": [
|
||||
"attribute",
|
||||
"google",
|
||||
"head",
|
||||
"helmet",
|
||||
"info",
|
||||
"metadata",
|
||||
"meta",
|
||||
"seo",
|
||||
"server",
|
||||
@@ -96,29 +17,111 @@
|
||||
"universal",
|
||||
"vue"
|
||||
],
|
||||
"license": "MIT",
|
||||
"main": "lib/vue-meta.js",
|
||||
"typings": "types/index.d.ts",
|
||||
"nyc": {
|
||||
"exclude": [
|
||||
"test/**/*.js"
|
||||
]
|
||||
},
|
||||
"homepage": "https://github.com/nuxt/vue-meta",
|
||||
"bugs": "https://github.com/nuxt/vue-meta/issues",
|
||||
"repository": {
|
||||
"url": "git@github.com:declandewet/vue-meta.git",
|
||||
"type": "git"
|
||||
"type": "git",
|
||||
"url": "git@github.com/nuxt/vue-meta.git"
|
||||
},
|
||||
"standard": {
|
||||
"globals": [
|
||||
"Vue",
|
||||
"define",
|
||||
"describe",
|
||||
"it",
|
||||
"expect",
|
||||
"before",
|
||||
"beforeEach",
|
||||
"after",
|
||||
"afterEach"
|
||||
]
|
||||
"license": "MIT",
|
||||
"contributors": [
|
||||
{
|
||||
"name": "Declan de Wet (@declandewet)"
|
||||
},
|
||||
{
|
||||
"name": "Sebastien Chopin (@Atinux)"
|
||||
}
|
||||
],
|
||||
"files": [
|
||||
"lib",
|
||||
"es",
|
||||
"types/*.d.ts"
|
||||
],
|
||||
"main": "lib/vue-meta.common.js",
|
||||
"web": "lib/vue-meta.js",
|
||||
"module": "es/index.js",
|
||||
"typings": "types/index.d.ts",
|
||||
"scripts": {
|
||||
"build": "yarn build:other && yarn build:es",
|
||||
"build:es": "rimraf es && babel src --env-name es --out-dir es",
|
||||
"build:other": "rimraf lib && rollup -c scripts/rollup.config.js",
|
||||
"coverage": "codecov",
|
||||
"dev": "cd examples && yarn dev && cd ..",
|
||||
"docs": "vuepress dev --host 0.0.0.0 --port 3000 docs",
|
||||
"docs:build": "vuepress build docs",
|
||||
"lint": "eslint src test",
|
||||
"prerelease": "git checkout master && git pull -r",
|
||||
"release": "yarn lint && yarn test && yarn build && standard-version",
|
||||
"postrelease": "git push origin master --follow-tags && yarn publish",
|
||||
"test": "yarn test:unit && yarn test:e2e-ssr && yarn test:e2e-browser",
|
||||
"test:e2e-ssr": "jest test/e2e/ssr",
|
||||
"test:e2e-browser": "jest test/e2e/browser",
|
||||
"test:unit": "jest test/unit",
|
||||
"test:types": "tsc -p types/test"
|
||||
},
|
||||
"dependencies": {
|
||||
"deepmerge": "^3.2.0"
|
||||
},
|
||||
"resolutions": {
|
||||
"webpack-dev-middleware": "3.6.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/cli": "^7.4.3",
|
||||
"@babel/core": "^7.4.3",
|
||||
"@babel/node": "^7.2.2",
|
||||
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
|
||||
"@babel/preset-env": "^7.4.3",
|
||||
"@nuxt/babel-preset-app": "^2.6.2",
|
||||
"@nuxtjs/eslint-config": "^0.0.1",
|
||||
"@vue/server-test-utils": "^1.0.0-beta.29",
|
||||
"@vue/test-utils": "^1.0.0-beta.29",
|
||||
"babel-core": "^7.0.0-bridge",
|
||||
"babel-eslint": "^10.0.1",
|
||||
"babel-jest": "^24.7.1",
|
||||
"babel-loader": "^8.0.5",
|
||||
"babel-plugin-dynamic-import-node": "^2.2.0",
|
||||
"browserstack-local": "^1.3.7",
|
||||
"chromedriver": "^73.0.0",
|
||||
"codecov": "^3.3.0",
|
||||
"eslint": "^5.16.0",
|
||||
"eslint-config-standard": "^12.0.0",
|
||||
"eslint-plugin-import": "^2.17.2",
|
||||
"eslint-plugin-jest": "^22.4.1",
|
||||
"eslint-plugin-node": "^8.0.1",
|
||||
"eslint-plugin-promise": "^4.1.1",
|
||||
"eslint-plugin-standard": "^4.0.0",
|
||||
"eslint-plugin-vue": "^5.2.2",
|
||||
"esm": "^3.2.22",
|
||||
"fs-extra": "^7.0.1",
|
||||
"geckodriver": "^1.16.2",
|
||||
"is-wsl": "^1.1.0",
|
||||
"jest": "^24.7.1",
|
||||
"jest-environment-jsdom": "^24.7.1",
|
||||
"jest-environment-jsdom-global": "^1.2.0",
|
||||
"jsdom": "^14.0.0",
|
||||
"lodash": "^4.17.11",
|
||||
"node-env-file": "^0.1.8",
|
||||
"puppeteer-core": "^1.14.0",
|
||||
"rimraf": "^2.6.3",
|
||||
"rollup": "^1.10.1",
|
||||
"rollup-plugin-buble": "^0.19.6",
|
||||
"rollup-plugin-commonjs": "^9.3.4",
|
||||
"rollup-plugin-json": "^4.0.0",
|
||||
"rollup-plugin-node-resolve": "^4.2.3",
|
||||
"rollup-plugin-replace": "^2.2.0",
|
||||
"rollup-plugin-terser": "^4.0.4",
|
||||
"selenium-webdriver": "^4.0.0-alpha.1",
|
||||
"standard-version": "^5.0.2",
|
||||
"tib": "^0.5.1",
|
||||
"typescript": "^3.4.4",
|
||||
"vue": "^2.6.10",
|
||||
"vue-jest": "^3.0.4",
|
||||
"vue-loader": "^15.7.0",
|
||||
"vue-router": "^3.0.6",
|
||||
"vue-server-renderer": "^2.6.10",
|
||||
"vue-template-compiler": "^2.6.10",
|
||||
"vuepress": "^0.14.11",
|
||||
"vuepress-theme-vue": "^1.1.0",
|
||||
"webpack": "^4.30.0"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user