-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1018 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
43
{
"name": "chartjs-scale-timestack",
"version": "1.0.1",
"description": "Alternative time scale for Chart.js. Formats time for humans",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "node build.js && tsc --emitDeclarationOnly",
"prepack": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jkmnt/chartjs-scale-timestack.git"
},
"keywords": [
"chartjs",
"time",
"scale",
"axis"
],
"author": "jkmnt",
"license": "MIT",
"files": [
"dist"
],
"bugs": {
"url": "https://github.com/jkmnt/chartjs-scale-timestack/issues"
},
"homepage": "https://github.com/jkmnt/chartjs-scale-timestack#readme",
"devDependencies": {
"esbuild": "^0.20.2",
"chart.js": ">=4",
"typescript": "^4.2.4"
},
"peerDependencies": {
"chart.js": ">=4"
},
"dependencies": {
"luxon": ">=3"
}
}