UNPKG

vuejs-highcharts

Version:

Wrapper for Highcharts library for Vue.js 2.x

131 lines (130 loc) 3.11 kB
{ "name": "vuejs-highcharts", "description": "Wrapper for Highcharts library for Vue.js 2.x", "version": "1.0.14", "private": false, "main": "./dist/vuejs-highcharts.common.js", "files": [ "dist/*", "src/*", "public/*", "*.json", "*.js", "plugins/*" ], "scripts": { "serve": "vue-cli-service serve", "build": "vue-cli-service build", "lint": "vue-cli-service lint", "test:unit": "vue-cli-service test:unit", "build-bundle": "vue-cli-service build --target lib --name vuejs-highcharts ./src/components/index.js", "npm-publish": "npm login && npm publish --access public", "deploy": "node scripts/gh-pages-deploy.js" }, "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/ederssouza/vuejs-highcharts.git" }, "bugs": { "url": "https://github.com/ederssouza/vuejs-highcharts/issues" }, "homepage": "https://ederssouza.github.io/vuejs-highcharts", "keywords": [ "vuejs-highcharts", "highcharts", "charts", "chart", "graphs", "ederssouza" ], "dependencies": { "core-js": "^2.6.5", "highcharts": "^8.2.0", "highlight.js": "^10.2.1", "prismjs": "^1.21.0", "vanillajs-scrollspy": "^2.0.3", "vue": "^2.6.10" }, "devDependencies": { "@vue/cli-plugin-babel": "^3.0.3", "@vue/cli-plugin-eslint": "^3.0.3", "@vue/cli-plugin-unit-jest": "^3.0.3", "@vue/cli-service": "^3.0.3", "@vue/eslint-config-standard": "^4.0.0", "@vue/test-utils": "1.0.0-beta.29", "babel-core": "7.0.0-bridge.0", "babel-eslint": "^10.0.1", "babel-jest": "^23.6.0", "eslint": "^5.16.0", "eslint-plugin-vue": "^5.0.0", "moment": "^2.29.1", "node-sass": "^4.12.0", "sass-loader": "^8.0.0", "vue-router": "^3.4.6", "vue-template-compiler": "^2.6.10" }, "eslintConfig": { "root": true, "env": { "node": true }, "extends": [ "plugin:vue/essential", "@vue/standard" ], "rules": {}, "parserOptions": { "parser": "babel-eslint" }, "overrides": [ { "files": [ "**/__tests__/*.{j,t}s?(x)" ], "env": { "jest": true } } ] }, "postcss": { "plugins": { "autoprefixer": {} } }, "browserslist": [ "> 1%", "last 2 versions" ], "jest": { "moduleFileExtensions": [ "js", "jsx", "json", "vue" ], "transform": { "^.+\\.vue$": "vue-jest", ".+\\.(css|styl|less|sass|scss|svg|png|jpg|ttf|woff|woff2)$": "jest-transform-stub", "^.+\\.jsx?$": "babel-jest" }, "transformIgnorePatterns": [ "/node_modules/" ], "moduleNameMapper": { "^@/(.*)$": "<rootDir>/src/$1" }, "snapshotSerializers": [ "jest-serializer-vue" ], "testMatch": [ "**/tests/unit/**/*.spec.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx)" ], "testURL": "http://localhost/", "watchPlugins": [ "jest-watch-typeahead/filename", "jest-watch-typeahead/testname" ] } }