-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.08 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": "chartjs-plugin-outerlabels",
"version": "2.0.0",
"description": "Chart.js outerLabels plugin",
"main": "dist/outerLabels.js",
"types": "dist/outerLabels.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "parcel ./demo/demo.html --dist-dir ./dist-demo",
"dist": "rm -rf dist && tsc --project ./tsconfig.dist.json",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Rob Crocombe <[email protected]> (http://robcrocombe.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/robcrocombe/chartjs-plugin-outerLabels.git"
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"trailingComma": "es5",
"parser": "typescript"
},
"browserslist": "last 2 versions, safari >= 7",
"devDependencies": {
"@types/parcel-env": "0.0.1",
"chart.js": "3.9.1",
"parcel": "2.7.0",
"typescript": "4.8.2"
},
"peerDependencies": {
"chart.js": ">= 3.7.0 < 4"
},
"keywords": [
"chart",
"chart.js",
"plugin",
"donut",
"doughnut",
"label"
]
}