-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 960 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 960 Bytes
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
{
"name": "@idrinth-api-bench/chartjs-plugin-stdev-filler",
"version": "1.0.5",
"keywords": [
"chartjs",
"chartjs-plugin",
"plugin",
"stdev"
],
"license": "MIT",
"description": "This tiny plugin shows the standardeviation as a colored area around a line chart.",
"main": "src/index.js",
"type": "module",
"bugs": {
"url": "https://github.com/idrinth-api-bench/issues"
},
"repository": {
"url": "https://github.com/idrinth-api-bench/chartjs-plugin-stdev-filler"
},
"homepage": "https://idrinth-api-ben.ch",
"scripts": {
"prepublishOnly": "tsc -p tsconfig.json",
"test": "mocha --timeout 30000 --require ts-node/register test/**.ts"
},
"peerDependencies": {
"chart.js": "^4.4"
},
"devDependencies": {
"@types/chai": "^5.0.0",
"@types/mocha": "^10.0.6",
"chai": "^5.1.1",
"mocha": "^11.0.1",
"sinon": "^20.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}