forked from jacktuck/node-chartjs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 928 Bytes
/
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
{
"name": "node-chartjs-v12",
"version": "1.1.2",
"description": "Chart.js on the server in Node.js",
"engines": {
"node": ">=12.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/dbellavista/node-chartjs"
},
"keywords": [
"chart.js",
"charts",
"line",
"bar",
"pie",
"server-side",
"node.js"
],
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"buildDeclaration": "rm -f index.d.ts && npx tsc -p declaration.jsconfig.json"
},
"author": "Jack Tuck",
"license": "MIT",
"dependencies": {
"@types/jsdom": "^16.2.10",
"@types/node": "^14.17.3",
"canvas": "2.8.0",
"jsdom": "^16.6.0"
},
"devDependencies": {
"chart.js": "3.3.2",
"opn": "^6.0.0",
"typescript": "^4.3.2"
},
"peerDependencies": {
"chart.js": "3.3.2"
}
}