2
0
mirror of https://github.com/tenrok/vue-meta.git synced 2026-05-17 06:29:38 +03:00
Files
vue-meta/package.json
T
2019-10-08 13:17:13 +02:00

128 lines
3.6 KiB
JSON

{
"name": "vue-meta",
"version": "2.3.0",
"description": "Manage HTML metadata in Vue.js components with ssr support",
"keywords": [
"attribute",
"google",
"head",
"helmet",
"info",
"metadata",
"meta",
"seo",
"server",
"ssr",
"title",
"universal",
"vue"
],
"homepage": "https://github.com/nuxt/vue-meta",
"bugs": "https://github.com/nuxt/vue-meta/issues",
"repository": {
"type": "git",
"url": "git@github.com/nuxt/vue-meta.git"
},
"license": "MIT",
"contributors": [
{
"name": "Declan de Wet (@declandewet)"
},
{
"name": "Sebastien Chopin (@Atinux)"
},
{
"name": "Pim (@pimlie)"
}
],
"files": [
"dist",
"types/*.d.ts"
],
"main": "dist/vue-meta.common.js",
"web": "dist/vue-meta.js",
"module": "dist/vue-meta.esm.js",
"typings": "types/index.d.ts",
"scripts": {
"build": "rimraf dist && 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 && standard-version",
"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": "^4.0.0"
},
"devDependencies": {
"@babel/cli": "^7.6.2",
"@babel/core": "^7.6.2",
"@babel/node": "^7.6.2",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.6.2",
"@nuxtjs/eslint-config": "^1.1.2",
"@vue/server-test-utils": "^1.0.0-beta.29",
"@vue/test-utils": "^1.0.0-beta.29",
"@vuepress/plugin-google-analytics": "^1.1.0",
"@vuepress/plugin-pwa": "^1.1.0",
"babel-core": "^7.0.0-bridge",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"babel-plugin-dynamic-import-node": "^2.3.0",
"browserstack-local": "^1.4.2",
"chromedriver": "^77.0.0",
"codecov": "^3.6.1",
"copy-webpack-plugin": "^5.0.4",
"eslint": "^6.5.1",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.17.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^5.2.3",
"esm": "^3.2.25",
"fs-extra": "^8.1.0",
"geckodriver": "^1.18.0",
"get-port": "^5.0.0",
"hable": "3.0.0-0",
"is-wsl": "^2.1.1",
"jest": "^24.9.0",
"jest-environment-jsdom": "^24.9.0",
"jest-environment-jsdom-global": "^1.2.0",
"jsdom": "^15.1.1",
"lodash": "^4.17.15",
"node-env-file": "^0.1.8",
"puppeteer-core": "^1.20.0",
"rimraf": "^3.0.0",
"rollup": "^1.22.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^5.1.2",
"selenium-webdriver": "^4.0.0-alpha.4",
"standard-version": "^7.0.0",
"tib": "^0.7.2",
"typescript": "^3.6.3",
"vue": "^2.6.10",
"vue-jest": "^3.0.5",
"vue-loader": "^15.7.1",
"vue-router": "^3.1.3",
"vue-server-renderer": "^2.6.10",
"vue-template-compiler": "^2.6.10",
"vuepress": "^1.1.0",
"vuepress-theme-vue": "^1.1.0",
"webpack": "^4.41.0"
}
}