UNPKG

kontent-rich-text-for-vue

Version:

A component for rendering Kentico Kontent rich text elements in vue.js

63 lines (62 loc) 1.71 kB
{ "name": "kontent-rich-text-for-vue", "version": "2.0.0", "description": "A component for rendering Kentico Kontent rich text elements in vue.js", "license": "MIT", "author": "Vít Svoboda <vit.svoboda@gmail.com>", "private": false, "repository": { "type": "git", "url": "https://github.com/vit-svoboda/kontent-rich-text-for-vue" }, "keywords": [ "vue", "Kentico", "Kentico Kontent", "kentico-kontent", "component", "vue-component", "kontent-rich-text-for-vue" ], "main": "dist/kontent-rich-text-for-vue.umd.js", "module": "dist/kontent-rich-text-for-vue.es.js", "files": [ "dist" ], "scripts": { "build": "npm run build:umd & npm run build:es", "build:umd": "rollup -c --format umd --file dist/kontent-rich-text-for-vue.umd.js", "build:es": "rollup -c --format es --file dist/kontent-rich-text-for-vue.es.js", "test": "jest" }, "dependencies": { "parse5": "^6.0.1" }, "devDependencies": { "@babel/core": "^7.16.0", "@babel/plugin-transform-modules-commonjs": "^7.15.4", "@rollup/plugin-node-resolve": "^13.0.5", "@types/jest": "^27.0.2", "@vue/compiler-sfc": "^3.2.20", "@vue/test-utils": "^1.2.2", "babel-core": "^7.0.0-bridge.0", "jest": "^27.2.5", "rollup": "^2.58.0", "rollup-plugin-vue": "^6.0.0", "vue": "^2.6.14", "vue-jest": "^3.0.7", "vue-template-compiler": "^2.6.14" }, "jest": { "moduleFileExtensions": [ "js", "ts", "vue" ], "transform": { ".*\\.vue$": "vue-jest", ".*\\.js$": "babel-jest" }, "testEnvironment": "jsdom" } }