mirror of
https://github.com/tenrok/vue-meta.git
synced 2026-05-22 07:14:04 +03:00
113 lines
3.5 KiB
JSON
113 lines
3.5 KiB
JSON
{
|
|
"name": "vue-meta",
|
|
"version": "2.3.3",
|
|
"description": "Manage HTML metadata in Vue.js components with SSR support",
|
|
"main": "dist/vue-meta.common.js",
|
|
"web": "dist/vue-meta.js",
|
|
"module": "dist/vue-meta.esm.js",
|
|
"typings": "types/index.d.ts",
|
|
"files": [
|
|
"dist",
|
|
"types/*.d.ts"
|
|
],
|
|
"homepage": "https://github.com/nuxt/vue-meta",
|
|
"bugs": "https://github.com/nuxt/vue-meta/issues",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/nuxt/vue-meta.git"
|
|
},
|
|
"license": "MIT",
|
|
"keywords": [
|
|
"google",
|
|
"head",
|
|
"metadata",
|
|
"meta",
|
|
"seo",
|
|
"ssr",
|
|
"title",
|
|
"universal",
|
|
"vue"
|
|
],
|
|
"author": "Pim (@pimlie)",
|
|
"scripts": {
|
|
"build": "rimraf dist && rollup -c scripts/rollup.config.js",
|
|
"coverage": "codecov",
|
|
"dev": "babel-node examples/server.js",
|
|
"docs": "vuepress dev --host 0.0.0.0 --port 3000 docs",
|
|
"docs:build": "vuepress build docs",
|
|
"examples": "babel-node --extensions '.ts,.js' examples/server.js",
|
|
"lint": "eslint --ext .js,.ts src test examples",
|
|
"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"
|
|
},
|
|
"pperDependencies": {
|
|
"vue": "next"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.12.10",
|
|
"@babel/node": "^7.12.10",
|
|
"@babel/preset-env": "^7.12.11",
|
|
"@babel/preset-typescript": "^7.12.7",
|
|
"@nuxtjs/eslint-config-typescript": "^5.0.0",
|
|
"@types/webpack": "^4.41.26",
|
|
"@types/webpack-env": "^1.16.0",
|
|
"@typescript-eslint/eslint-plugin": "^4.13.0",
|
|
"@typescript-eslint/parser": "^4.13.0",
|
|
"@vue/compiler-sfc": "^3.0.5",
|
|
"@vue/server-renderer": "^3.0.5",
|
|
"@vue/server-test-utils": "^1.1.2",
|
|
"@vue/test-utils": "^1.1.2",
|
|
"@wishy-gift/html-include-chunks-webpack-plugin": "^0.1.5",
|
|
"babel-jest": "^26.6.3",
|
|
"babel-loader": "^8.2.2",
|
|
"babel-plugin-dynamic-import-node": "^2.3.3",
|
|
"babel-plugin-global-define": "^1.0.3",
|
|
"babel-plugin-module-resolver": "^4.1.0",
|
|
"browserstack-local": "^1.4.8",
|
|
"chromedriver": "^87.0.5",
|
|
"codecov": "^3.8.1",
|
|
"consola": "^2.15.0",
|
|
"eslint": "^7.18.0",
|
|
"express-urlrewrite": "^1.4.0",
|
|
"geckodriver": "^1.21.1",
|
|
"html-webpack-plugin": "^4.5.1",
|
|
"jest": "^26.6.3",
|
|
"jest-environment-jsdom": "^26.6.2",
|
|
"jest-environment-jsdom-global": "^2.0.4",
|
|
"jsdom": "^16.4.0",
|
|
"lodash": "^4.17.20",
|
|
"node-env-file": "^0.1.8",
|
|
"puppeteer-core": "^5.5.0",
|
|
"rimraf": "^3.0.2",
|
|
"rollup": "^2.36.2",
|
|
"rollup-plugin-babel": "^4.4.0",
|
|
"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": "^7.0.2",
|
|
"rollup-plugin-typescript2": "^0.29.0",
|
|
"selenium-webdriver": "^4.0.0-alpha.8",
|
|
"standard-version": "^9.1.0",
|
|
"tib": "^0.7.5",
|
|
"ts-jest": "^26.4.4",
|
|
"ts-loader": "^8.0.14",
|
|
"ts-node": "^9.1.1",
|
|
"typescript": "^4.1.3",
|
|
"vue": "^3.0.0",
|
|
"vue-jest": "^3.0.7",
|
|
"vue-loader": "^16.0.0",
|
|
"vue-router": "next",
|
|
"webpack": "^5.15.0",
|
|
"webpack-bundle-analyzer": "^4.3.0",
|
|
"webpack-cli": "^4.3.1",
|
|
"webpack-dev-server": "^3.11.2",
|
|
"webpackbar": "^4.0.0"
|
|
}
|
|
}
|