-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
44 lines (44 loc) · 1.45 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
{
"name": "chartjs-plugin-deferred",
"homepage": "https://chartjs-plugin-deferred.netlify.app",
"description": "Chart.js plugin to defer initial chart updates",
"version": "2.0.0",
"license": "MIT",
"main": "dist/chartjs-plugin-deferred.js",
"module": "dist/chartjs-plugin-deferred.esm.js",
"types": "types/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/chartjs/chartjs-plugin-deferred.git"
},
"scripts": {
"bower": "node scripts/create-bower-json",
"build": "rollup -c",
"build:dev": "rollup -c --watch",
"docs": "npm run build && vuepress build docs --no-cache",
"docs:dev": "npm run build && vuepress dev docs --no-cache",
"lint": "eslint . --ext .js,.ts --cache",
"package": "npm run build && node scripts/create-packages.js",
"test": "npm run test-types",
"test-types": "tsc -p types/test"
},
"devDependencies": {
"@simonbrunel/vuepress-plugin-versions": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"@vuepress/plugin-google-analytics": "^1.9.7",
"archiver": "^5.3.0",
"chart.js": "^3.7.0",
"eslint": "^8.8.0",
"eslint-config-chartjs": "^0.3.0",
"rollup": "^2.67.1",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.5.5",
"vuepress": "^1.9.7",
"vuepress-plugin-redirect": "^1.2.5",
"vuepress-theme-chartjs": "^0.2.0"
},
"peerDependencies": {
"chart.js": ">= 3.0.0"
}
}