UNPKG

vue-disqus

Version:

Vue component to integrate Disqus comments in your application, with support for SPA

82 lines (81 loc) 3.08 kB
{ "name": "vue-disqus", "version": "4.0.1", "description": "Vue component to integrate Disqus comments in your application, with support for SPA", "main": "dist/vue-disqus.umd.js", "module": "dist/vue-disqus.esm.js", "unpkg": "dist/vue-disqus.min.js", "browser": { "./sfc": "src/vue-disqus.vue" }, "types": "index.d.ts", "scripts": { "dev": "rollup --config rollup.config.dev.js --watch", "build": "npm run build:umd & npm run build:es & npm run build:unpkg", "build:umd": "rollup --config rollup.config.prod.js --format umd --file dist/vue-disqus.umd.js", "build:es": "rollup --config rollup.config.prod.js --format es --file dist/vue-disqus.esm.js", "build:unpkg": "rollup --config rollup.config.prod.js --format iife --file dist/vue-disqus.min.js", "demo:dev": "cd demo && npm run serve", "demo:build": "cd demo && npm run build", "demo:publish": "cp ./demo/dist/index.html ./demo/dist/200.html && surge ./demo/dist https://vue-disqus.surge.sh/", "docs:dev": "./node_modules/.bin/vuepress dev docs --no-cache", "docs:build": "./node_modules/.bin/vuepress build docs --no-cache", "docs:publish": "gh-pages -d docs/.vuepress/dist", "release": "standard-version", "test:unit": "jest", "test:e2e": "node_modules/.bin/cypress run --headless", "test:e2e:open": "node_modules/.bin/cypress open ", "project:publish": "git push --tags origin master && npm run build && npm publish" }, "repository": { "type": "git", "url": "git+https://github.com/ktquez/vue-disqus.git" }, "keywords": [ "disqus", "vue", "vuejs", "blog", "vuepress", "comments" ], "author": "Alan Ktquez <ktquez@gmail.com> (https://github.com/ktquez/)", "license": "MIT", "bugs": { "url": "https://github.com/ktquez/vue-disqus/issues" }, "homepage": "https://github.com/ktquez/vue-disqus#readme", "devDependencies": { "@rollup/plugin-buble": "^0.21.3", "@rollup/plugin-commonjs": "^12.0.0", "@rollup/plugin-node-resolve": "^8.0.0", "@rollup/plugin-replace": "^2.3.2", "@vue/eslint-config-standard": "^5.1.2", "@vue/test-utils": "^1.0.3", "babel-eslint": "^10.1.0", "babel-jest": "^26.0.1", "chokidar": "^3.4.0", "cypress": "^4.7.0", "eslint": "^7.1.0", "eslint-plugin-cypress": "^2.11.1", "eslint-plugin-import": "^2.20.2", "eslint-plugin-node": "^11.1.0", "eslint-plugin-promise": "^4.2.1", "eslint-plugin-standard": "^4.0.1", "eslint-plugin-vue": "^6.2.2", "eslint-plugin-vuejs-accessibility": "^0.1.3", "gh-pages": "^3.0.0", "jest": "^26.0.1", "rollup": "^2.13.1", "rollup-plugin-eslint": "^7.0.0", "rollup-plugin-terser": "^6.1.0", "rollup-plugin-vue": "^5.1.9", "standard-version": "^8.0.0", "surge": "^0.21.3", "vue": "^2.6.11", "vue-template-compiler": "^2.6.11", "vuepress": "^1.5.0", "vuepress-theme-default-vue-a11y": "^0.1.15", "watchpack": "^1.6.1" } }