-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
37 lines (37 loc) · 892 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
{
"name": "gitbook-plugin-chartjs",
"description": "Chart.js plugin for GitBook",
"version": "0.1.0",
"license": "MIT",
"keywords": [
"chart",
"chart.js",
"gitbook",
"plugin"
],
"repository": {
"type": "git",
"url": "git+https://github.com/chartjs/gitbook-plugin-chartjs.git"
},
"engines": {
"gitbook": ">=3.0.0"
},
"dependencies": {
"chart.js": "^2.8.0",
"chartjs-plugin-deferred": "^0.2.0",
"copyfiles": "^1.0.0",
"js-yaml": "^3.5.2"
},
"scripts": {
"prepublish": "copyfiles -f node_modules/chart*/dist/*.js assets/"
},
"gitbook": {
"properties": {
"defaults": {
"type": "object",
"default": null,
"title": "Chart.js default options"
}
}
}
}