-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.23 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.23 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
{
"name": "gauge-chart-js",
"version": "2.0.1",
"description": "A tiny library for rendering gauge charts. Supports conical/polar gradients, animation timing functions, custom labels/tooltips.",
"main": "dist/index.js",
"module": "dist/gauge-chart-js.esm.js",
"engines": {
"node": ">=20"
},
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"bundlesize": "bundlesize",
"typecheck": "tsc",
"build": "rollup -c",
"prepare": "npm run build"
},
"types": "dist/gauge-chart-js.d.ts",
"keywords": [
"gauge",
"chart",
"conical gradient",
"polar gradient",
"circle progress"
],
"author": "http://github.com/kubk",
"repository": "https://github.com/kubk/gauge-chart-js",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.0",
"@types/node": "16.11.19",
"bundlesize": "^0.18.0",
"jsdom": "^22.1.0",
"prettier": "^1.18.2",
"rollup": "^2.66.0",
"rollup-plugin-dts": "^4.1.0",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.5.5",
"vite": "^4.5.14",
"vitest": "^0.34.6"
},
"bundlesize": [
{
"path": "./dist/index.js",
"maxSize": "2 kB"
}
]
}