UNPKG

jscharting-vue

Version:

JSCharting plugin for Vue.js

105 lines (104 loc) 2.57 kB
{ "name": "jscharting-vue", "version": "2.4.0", "description": "JSCharting plugin for Vue.js", "homepage": "https://jscharting.com/", "author": "JSCharting <support@jscharting.com> (https://jscharting.com/support.htm)", "bugs": { "email": "support@jscharting.com" }, "license": "jscharting.com/store/", "main": "./src/main.js", "typings": "types/jscharting-vue.d.ts", "scripts": { "build-examples": "cd examples && npm install && npm run build", "build-examples-vue3": "cd examples-vue3 && npm install && npm run build", "serve-examples": "cd examples && npm install && npm run serve", "serve-examples-vue3": "cd examples-vue3 && npm install && npm run serve", "lint": "eslint src/components/** scripts/** ", "format": "prettier --config ./.prettierrc.js --write src/**/*.vue tests/** scripts/**", "postinstall": "node ./scripts/postinstall.js", "test": "jest" }, "jest": { "moduleFileExtensions": [ "js", "json", "vue" ], "transform": { "^.+\\.js$": "<rootDir>/node_modules/babel-jest", ".*\\.(vue)$": "<rootDir>/node_modules/vue-jest" }, "moduleNameMapper": { "^@/(.*)$": "<rootDir>/src/components/$1" } }, "dependencies": { "jscharting": "^3.4.0" }, "devDependencies": { "@babel/core": "^7.16.5", "@babel/preset-env": "^7.8.3", "@vue/cli-plugin-babel": "~4.5.0", "@vue/cli-plugin-eslint": "^4.1.0", "@vue/cli-plugin-typescript": "~4.5.0", "@vue/cli-service": "~4.5.0", "@vue/compiler-sfc": "^3.0.7", "@vue/test-utils": "^1.0.0-beta.31", "babel-core": "^7.0.0-bridge.0", "babel-eslint": "^10.0.3", "core-js": "^3.4.3", "eslint": "^5.16.0", "eslint-plugin-vue": "^5.0.0", "jest": "^25.1.0", "prettier": "^1.19.1", "vue": "^2.6.10", "vue-jest": "^3.0.5", "vue-template-compiler": "^2.6.10" }, "peerDependencies": { "vue": "^2.6.10 || >=3.0.5" }, "eslintConfig": { "root": true, "env": { "node": true, "jest": true }, "extends": [ "plugin:vue/essential", "eslint:recommended" ], "rules": {}, "parserOptions": { "parser": "babel-eslint" } }, "browserslist": [ "> 1%", "last 2 versions" ], "repository": { "type": "git", "url": "git+https://github.com/jscharting/jscharting-vue.git" }, "keywords": [ "charts", "dataviz", "graphs", "visualization", "javascript-chart", "javascript", "vuejs", "vue" ], "files": [ "src/", "types/", "scripts/", "*.md", "babel.config.js", ".travis.yml" ] }