forked from nagix/chartjs-plugin-streaming
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
83 lines (83 loc) · 2.59 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@robloche/chartjs-plugin-streaming",
"homepage": "https://github.com/Robloche/chartjs-plugin-streaming",
"description": "Chart.js plugin for live streaming data",
"author": "Akihiko Kusanagi <[email protected]> (https://nagix.github.io/)",
"version": "3.1.0",
"license": "MIT",
"jsdelivr": "dist/chartjs-plugin-streaming.min.js",
"unpkg": "dist/chartjs-plugin-streaming.min.js",
"main": "dist/chartjs-plugin-streaming.js",
"module": "dist/chartjs-plugin-streaming.esm.js",
"types": "types/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/Robloche/chartjs-plugin-streaming.git"
},
"bugs": {
"url": "https://github.com/Robloche/chartjs-plugin-streaming/issues"
},
"keywords": [
"chart.js",
"plugin",
"live",
"streaming",
"scroll"
],
"files": [
"bower.json",
"dist/*.js",
"types/*.d.ts"
],
"directories": {
"doc": "docs",
"test": "test"
},
"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-js": "eslint \"**/*.js\"",
"lint-md": "eslint \"**/*.md\"",
"lint-types": "eslint \"types/**/*.ts\"",
"lint": "concurrently \"npm:lint-*\"",
"package": "npm run build && node scripts/create-packages"
},
"devDependencies": {
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@simonbrunel/vuepress-plugin-versions": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"@vuepress/plugin-google-analytics": "^1.9.7",
"@vuepress/plugin-html-redirect": "^0.1.4",
"archiver": "^5.3.0",
"chart.js": "^4.1.1",
"chartjs-adapter-luxon": "^1.3.0",
"chartjs-plugin-annotation": "^2.1.0",
"chartjs-plugin-datalabels": "^2.2.0",
"chartjs-plugin-zoom": "^2.0.0",
"concurrently": "^7.6.0",
"eslint": "^8.30.0",
"eslint-config-chartjs": "^0.3.0",
"eslint-plugin-es": "^4.1.0",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-markdown": "^3.0.0",
"luxon": "^3.1.1",
"ng-hammerjs": "^2.0.8",
"rollup": "^3.7.5",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.3.4",
"vuepress": "^1.8.2",
"vuepress-plugin-flexsearch": "^0.3.0",
"vuepress-plugin-redirect": "^1.2.5",
"vuepress-theme-chartjs": "^0.2.0"
},
"peerDependencies": {
"chart.js": "^4.1.1"
}
}