forked from leeoniya/uPlot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.01 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
{
"name": "uplot",
"version": "1.0.10",
"description": "A small, fast chart for time series, lines, areas, ohlc & bars",
"main": "./dist/uPlot.cjs.js",
"module": "./dist/uPlot.esm.js",
"typings": "./dist/uPlot.d.ts",
"scripts": {
"build": "rollup -c",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leeoniya/uPlot.git"
},
"files": [
"package.json",
"README.md",
"LICENSE",
"dist"
],
"keywords": [
"micro",
"time",
"series",
"line",
"area",
"trend",
"bar",
"ohlc",
"plot",
"chart",
"graph"
],
"author": "Leon Sorokin <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/leeoniya/uPlot/issues"
},
"homepage": "https://github.com/leeoniya/uPlot#readme",
"devDependencies": {
"rollup": "^2.14.0",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^6.1.0"
}
}