-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.06 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 3.06 KB
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
{
"author": "Jukka Kurkela <jukka.kurkela@gmail.com>",
"bugs": {
"url": "https://github.com/kurkle/chartjs-plugin-gradient/issues"
},
"description": "Easy gradient colors for Chart.js",
"devDependencies": {
"@astrojs/check": "^0.9.10",
"@astrojs/mdx": "^8.0.0",
"@astrojs/starlight": "^0.42.0",
"@biomejs/biome": "^2.4.14",
"@kurkle/astro-chartjs-editor": "^1.0.0",
"@kurkle/configs": "^1.5.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^1.0.0",
"astro": "^7.0.6",
"chart.js": "^4.0.1",
"chartjs-adapter-luxon": "^1.3.0",
"chartjs-test-utils": "^0.5.0",
"concurrently": "^10.0.5",
"cross-env": "^10.1.0",
"fs-extra": "^11.1.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.8",
"luxon": "^3.1.0",
"mocha": "^12.0.0",
"pixelmatch": "^7.1.0",
"png-to-ico": "^3.0.2",
"rollup": "^4.54.0",
"rollup-plugin-istanbul": "^5.0.0",
"semantic-release": "^25.0.3",
"sharp": "^0.35.4",
"typescript": "^6.0.3"
},
"exports": {
"import": "./dist/chartjs-plugin-gradient.esm.js",
"require": "./dist/chartjs-plugin-gradient.cjs",
"script": "./dist/chartjs-plugin-gradient.min.js",
"types": "./types/index.d.ts"
},
"files": [
"dist/*",
"!dist/docs/**",
"types/*.d.ts"
],
"homepage": "https://github.com/kurkle/chartjs-plugin-gradient#readme",
"jsdelivr": "dist/chartjs-plugin-gradient.min.js",
"keywords": [
"chart.js",
"plugin",
"color",
"palette",
"generator",
"auto"
],
"license": "MIT",
"main": "dist/chartjs-plugin-gradient.cjs",
"module": "dist/chartjs-plugin-gradient.esm.js",
"name": "chartjs-plugin-gradient",
"peerDependencies": {
"chart.js": ">=2.6.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kurkle/chartjs-plugin-gradient.git"
},
"scripts": {
"build": "rollup -c",
"dev": "karma start ./karma.conf.cjs --auto-watch --no-single-run --browsers chrome",
"dev:ff": "karma start ./karma.conf.cjs --auto-watch --no-single-run --browsers firefox",
"docs": "npm run build && astro build",
"docs:dev": "npm run build && astro dev",
"docs:version": "node ./docs/scripts/write-docs-version.cjs",
"format": "biome check --write",
"icons": "kurkle-generate-icons",
"lint": "biome check",
"predocs": "npm run docs:version",
"predocs:dev": "npm run docs:version",
"prepack": "npm run build",
"prepare": "git config core.hooksPath .githooks || true",
"test": "cross-env NODE_ENV=test concurrently --group \"npm:test-*\"",
"test-karma": "karma start ./karma.conf.cjs --no-auto-watch --single-run",
"typecheck:docs": "astro check"
},
"sideEffects": false,
"type": "module",
"types": "./types/index.d.ts",
"unpkg": "dist/chartjs-plugin-gradient.min.js",
"version": "0.0.0-development"
}