-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.5 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
{
"name": "micro-charts",
"version": "7.5.0",
"description": "A tiny library for visualizing your data",
"main": "lib/index.js",
"module": "lib/index.js",
"sideEffects": false,
"scripts": {
"size": "size-limit",
"start": "webpack serve",
"docs": "rm -rf dist && NODE_ENV=production webpack",
"build": "tsc",
"predeploy": "npm run docs",
"deploy": "gh-pages -d dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SanichKotikov/micro-charts.git"
},
"author": "Sanich Kotikov <[email protected]> (https://sanichkotikov.github.io)",
"license": "MIT",
"files": [
"lib"
],
"keywords": [
"charts",
"piechart",
"linechart",
"chart",
"pie",
"graph"
],
"bugs": {
"url": "https://github.com/SanichKotikov/micro-charts/issues"
},
"devDependencies": {
"@size-limit/preset-small-lib": "7.0.8",
"css-loader": "6.7.1",
"gh-pages": "4.0.0",
"html-webpack-plugin": "5.5.0",
"mini-css-extract-plugin": "2.6.0",
"size-limit": "7.0.8",
"ts-loader": "9.3.0",
"typescript": "4.7.2",
"webpack": "5.72.1",
"webpack-cli": "4.9.2",
"webpack-dev-server": "4.9.0"
},
"size-limit": [
{
"path": "lib/linechart/index.js"
},
{
"path": "lib/barchart/index.js"
},
{
"path": "lib/linebarchart/index.js"
},
{
"path": "lib/piechart/index.js"
},
{
"path": "lib/index.js"
}
],
"homepage": "https://sanichkotikov.github.io/micro-charts/"
}