mirror of
https://github.com/tenrok/vue-meta.git
synced 2026-05-21 14:34:04 +03:00
95 lines
2.7 KiB
JSON
95 lines
2.7 KiB
JSON
{
|
|
"name": "vue-meta",
|
|
"description": "Manage page meta info in Vue 2.0 server-rendered apps",
|
|
"version": "1.5.8",
|
|
"author": "Declan de Wet <declandewet@me.com>",
|
|
"bugs": "https://github.com/nuxt/vue-meta/issues",
|
|
"scripts": {
|
|
"build": "rimraf lib && rollup -c scripts/rollup.config.js",
|
|
"codecov": "codecov",
|
|
"deploy": "npm version",
|
|
"dev": "cd examples && npm run dev && cd ..",
|
|
"lint": "eslint src test",
|
|
"postdeploy": "git push origin master --follow-tags && npm run release",
|
|
"postversion": "npm run update-cdn && git add . && git commit -m \":ship: CDN update\"",
|
|
"predeploy": "git checkout master && git pull -r",
|
|
"prerelease": "npm run build",
|
|
"preversion": "npm run toc",
|
|
"release": "npm publish",
|
|
"test": "jest",
|
|
"toc": "doctoc README.md --title '# Table of Contents'",
|
|
"update-cdn": "babel-node scripts/update-cdn.js"
|
|
},
|
|
"dependencies": {
|
|
"deepmerge": "^3.0.0",
|
|
"lodash.isplainobject": "^4.0.6",
|
|
"lodash.uniqueid": "^4.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.1.6",
|
|
"@babel/node": "^7.2.2",
|
|
"@babel/preset-env": "^7.1.6",
|
|
"@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.1.0",
|
|
"babel-loader": "^8.0.4",
|
|
"codecov": "^3.1.0",
|
|
"doctoc": "^1.4.0",
|
|
"eslint": "^5.13.0",
|
|
"eslint-config-standard": "^12.0.0",
|
|
"eslint-plugin-import": "^2.16.0",
|
|
"eslint-plugin-jest": "^22.2.2",
|
|
"eslint-plugin-node": "^8.0.1",
|
|
"eslint-plugin-promise": "^4.0.1",
|
|
"eslint-plugin-standard": "^4.0.0",
|
|
"eslint-plugin-vue": "^5.1.0",
|
|
"jest": "^24.1.0",
|
|
"jsdom": "^13.2.0",
|
|
"jsdom-global": "^3.0.2",
|
|
"rimraf": "^2.6.2",
|
|
"rollup": "^1.0.0",
|
|
"rollup-plugin-buble": "^0.19.4",
|
|
"rollup-plugin-commonjs": "^9.2.0",
|
|
"rollup-plugin-json": "^3.1.0",
|
|
"rollup-plugin-node-resolve": "^4.0.0",
|
|
"rollup-plugin-terser": "^4.0.4",
|
|
"update-section": "^0.3.3",
|
|
"vue": "^2.6.3",
|
|
"vue-jest": "^3.0.2",
|
|
"vue-server-renderer": "^2.6.3",
|
|
"vue-template-compiler": "^2.6.3"
|
|
},
|
|
"files": [
|
|
"lib",
|
|
"types/index.d.ts",
|
|
"types/vue.d.ts"
|
|
],
|
|
"homepage": "https://github.com/nuxt/vue-meta",
|
|
"keywords": [
|
|
"attribute",
|
|
"google",
|
|
"head",
|
|
"helmet",
|
|
"info",
|
|
"meta",
|
|
"seo",
|
|
"server",
|
|
"ssr",
|
|
"title",
|
|
"universal",
|
|
"vue"
|
|
],
|
|
"license": "MIT",
|
|
"main": "lib/vue-meta.common.js",
|
|
"web": "lib/vue-meta.js",
|
|
"module": "src/index.js",
|
|
"typings": "types/index.d.ts",
|
|
"repository": {
|
|
"url": "git@github.com/nuxt/vue-meta.git",
|
|
"type": "git"
|
|
}
|
|
}
|