mirror of
https://github.com/chartjs/Chart.js.git
synced 2026-01-18 16:04:41 +00:00
* feat: add ESM support * build: rename UMD bundle * chore: edit supbackages description * style: disable es/no-import-meta linter rule * test: dynamic import in cjs module * docs: edit integrations page * docs: review fixes * chore: remove useless regex in webpack config * ci: test size-limit only for ESM bundle
14 lines
290 B
JSON
14 lines
290 B
JSON
{
|
|
"private": true,
|
|
"description": "chart.js should work in Node",
|
|
"type": "module",
|
|
"scripts": {
|
|
"test": "npm run test-mjs && npm run test-cjs",
|
|
"test-mjs": "node test.js",
|
|
"test-cjs": "node test.cjs"
|
|
},
|
|
"dependencies": {
|
|
"chart.js": "file:../package.tgz"
|
|
}
|
|
}
|