-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
98 lines (98 loc) · 3.29 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "chartjs-chart-matrix",
"version": "2.1.0",
"description": "Chart.js module for creating matrix charts",
"type": "module",
"main": "dist/chartjs-chart-matrix.cjs",
"module": "dist/chartjs-chart-matrix.esm.js",
"types": "types/index.esm.d.ts",
"jsdelivr": "dist/chartjs-chart-matrix.min.js",
"unpkg": "dist/chartjs-chart-matrix.min.js",
"exports": {
"types": "./types/index.esm.d.ts",
"import": "./dist/chartjs-chart-matrix.esm.js",
"require": "./dist/chartjs-chart-matrix.cjs",
"script": "./dist/chartjs-chart-matrix.min.js"
},
"sideEffects": [
"dist/chartjs-chart-matrix.cjs",
"dist/chartjs-chart-matrix-min.js"
],
"scripts": {
"autobuild": "rollup -c -w",
"build": "rollup -c",
"dev": "karma start ./karma.conf.cjs --no-single-run --auto-watch --browsers chrome",
"docs": "npm run build && vuepress build docs --no-cache",
"docs:dev": "npm run build && 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-karma": "karma start ./karma.conf.cjs --no-auto-watch --single-run",
"test-integration:node-commonjs": "npm run test --prefix test/integration/node-commonjs",
"test-integration:node-module": "npm run test --prefix test/integration/node-module"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kurkle/chartjs-chart-matrix.git"
},
"keywords": [
"chart.js",
"chart",
"matrix"
],
"files": [
"dist/*",
"!dist/docs/**",
"types/index.esm.d.ts"
],
"author": "Jukka Kurkela",
"license": "MIT",
"bugs": {
"url": "https://github.com/kurkle/chartjs-chart-matrix/issues"
},
"homepage": "https://chartjs-chart-matrix.pages.dev/",
"devDependencies": {
"@napi-rs/canvas": "^0.1.30",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.0",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"chart.js": "^4.0.1",
"chartjs-adapter-date-fns": "^3.0.0",
"chartjs-test-utils": "^0.5.0",
"concurrently": "^9.0.1",
"cross-env": "^7.0.3",
"date-fns": "^2.19.0",
"eslint": "^8.4.1",
"eslint-config-chartjs": "^0.3.0",
"eslint-plugin-es": "^4.1.0",
"eslint-plugin-html": "^8.1.2",
"eslint-plugin-markdown": "^3.0.0",
"jasmine-core": "^5.1.2",
"karma": "^6.2.0",
"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.8",
"karma-spec-reporter": "^0.0.36",
"pixelmatch": "^6.0.0",
"rollup": "^4.21.2",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-istanbul": "^5.0.0",
"typescript": "^5.3.3",
"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"
}
}