You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

99 lines
3.3 KiB

{
"name": "chartjs-chart-treemap",
"homepage": "https://chartjs-chart-treemap.pages.dev/",
"version": "3.1.0",
"description": "Chart.js module for creating treemap charts",
"type": "module",
"main": "dist/chartjs-chart-treemap.cjs",
"module": "dist/chartjs-chart-treemap.esm.js",
"types": "types/index.esm.d.ts",
"jsdelivr": "dist/chartjs-chart-treemap.min.js",
"unpkg": "dist/chartjs-chart-treemap.min.js",
"exports": {
"types": "./types/index.esm.d.ts",
"import": "./dist/chartjs-chart-treemap.esm.js",
"require": "./dist/chartjs-chart-treemap.cjs",
"script": "./dist/chartjs-chart-treemap.min.js"
},
"sideEffects": [
"dist/chartjs-chart-treemap.cjs",
"dist/chartjs-chart-treemap.min.js"
],
"scripts": {
"autobuild": "rollup -c -w",
"build": "rollup -c",
"dev": "karma start ./karma.conf.cjs --no-single-run --auto-watch --browsers chrome",
"dev:ff": "karma start ./karma.conf.cjs --no-single-run --auto-watch --browsers firefox",
"docs": "npm run build && vuepress build docs --no-cache",
"docs:dev": "concurrently \"npm:autobuild\" \"vuepress dev docs --no-cache\"",
"lint": "concurrently -r \"npm:lint-*\"",
"lint-js": "eslint \"src/**/*.js\" \"test/**/*.js\" \"docs/**/*.js\"",
"lint-md": "eslint \"**/*.md\"",
"lint-types": "eslint \"types/**/*.ts\" && tsc -p types/tests/",
"test": "cross-env NODE_ENV=test concurrently \"npm:test-*\"",
"test-lint": "npm run lint",
"test-types": "tsc -p types/tests/",
"test-karma": "karma start ./karma.conf.cjs --no-auto-watch --single-run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kurkle/chartjs-chart-treemap.git"
},
"keywords": [
"chart.js",
"chart",
"treemap"
],
"files": [
"dist/*",
"!dist/docs/**",
"types/index.esm.d.ts"
],
"author": "Jukka Kurkela",
"license": "MIT",
"bugs": {
"url": "https://github.com/kurkle/chartjs-chart-treemap/issues"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"chart.js": "^4.0.1",
"chartjs-plugin-datalabels": "^2.2.0",
"chartjs-plugin-zoom": "^2.0.0",
"chartjs-test-utils": "^0.5.0",
"concurrently": "^9.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.3.0",
"eslint-config-chartjs": "^0.3.0",
"eslint-plugin-es": "^4.1.0",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-markdown": "^3.0.0",
"jasmine-core": "^5.3.0",
"karma": "^6.3.2",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.3",
"karma-firefox-launcher": "^2.1.0",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^2.0.0",
"karma-rollup-preprocessor": "7.0.7",
"karma-spec-reporter": "^0.0.36",
"karma-summary-reporter": "^4.0.1",
"ng-hammerjs": "^2.0.8",
"pixelmatch": "^6.0.0",
"rollup": "^4.21.2",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-istanbul": "^5.0.0",
"typescript": "^5.6.2",
"vuepress": "^1.9.7",
"vuepress-plugin-flexsearch": "^0.3.0",
"vuepress-plugin-redirect": "^1.2.5",
"vuepress-theme-chartjs": "^0.2.0"
},
"peerDependencies": {
"chart.js": ">=3.0.0"
}
}