2
0
mirror of https://github.com/tenrok/vue-meta.git synced 2026-05-17 06:39:37 +03:00
Files
vue-meta/package.json
T
2019-07-24 16:09:24 +02:00

129 lines
3.7 KiB
JSON

{
"name": "vue-meta",
"version": "2.1.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 && yarn build && standard-version",
"postrelease": "yarn build && git add -f dist/* && git commit --amend",
"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.5.5",
"@babel/core": "^7.5.5",
"@babel/node": "^7.5.5",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.5.5",
"@nuxt/babel-preset-app": "^2.8.1",
"@nuxtjs/eslint-config": "^1.0.1",
"@vue/server-test-utils": "^1.0.0-beta.29",
"@vue/test-utils": "^1.0.0-beta.29",
"@vuepress/plugin-google-analytics": "^1.0.2",
"@vuepress/plugin-pwa": "^1.0.2",
"babel-core": "^7.0.0-bridge",
"babel-eslint": "^10.0.2",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"babel-plugin-dynamic-import-node": "^2.3.0",
"browserstack-local": "^1.4.2",
"chromedriver": "^75.1.0",
"codecov": "^3.5.0",
"copy-webpack-plugin": "^5.0.3",
"eslint": "^6.1.0",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.13.6",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.2.3",
"esm": "^3.2.25",
"fs-extra": "^8.1.0",
"geckodriver": "^1.16.2",
"get-port": "^5.0.0",
"is-wsl": "^2.1.0",
"jest": "^24.8.0",
"jest-environment-jsdom": "^24.8.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.19.0",
"rimraf": "^2.6.3",
"rollup": "^1.17.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^5.1.1",
"selenium-webdriver": "^4.0.0-alpha.4",
"standard-version": "^6.0.1",
"tib": "^0.6.3",
"typescript": "^3.5.3",
"vue": "^2.6.10",
"vue-jest": "^3.0.4",
"vue-loader": "^15.7.1",
"vue-router": "^3.0.7",
"vue-server-renderer": "^2.6.10",
"vue-template-compiler": "^2.6.10",
"vuepress": "^1.0.2",
"vuepress-theme-vue": "^1.1.0",
"webpack": "^4.37.0"
}
}