-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.17 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
{
"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",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"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/jest": "^24.0.18",
"bundlesize": "^0.18.0",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"rollup": "^2.66.0",
"rollup-plugin-dts": "^4.1.0",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^24.1.0",
"typescript": "^4.5.5"
},
"bundlesize": [
{
"path": "./dist/index.js",
"maxSize": "2 kB"
}
]
}