-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.34 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.34 KB
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
{
"name": "singledivui",
"version": "2.0.0",
"description": "An experimental chart library that renders line, bar, area, bubble, and scatter charts using a single HTML element and modern CSS.",
"author": "soundar24",
"homepage": "https://singledivui.com",
"repository": {
"type": "git",
"url": "https://github.com/soundar24/SingleDivUI.git"
},
"bugs": {
"url": "https://github.com/soundar24/SingleDivUI/issues"
},
"keywords": [
"chart",
"chart-js",
"chart-css",
"line-chart",
"bar-chart",
"area-chart",
"bubble-chart",
"scatter-chart",
"single-div"
],
"license": "MIT",
"main": "dist/singledivui.min.js",
"module": "dist/singledivui.esm.js",
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-replace": "^5.0.2",
"gulp": "^4.0.2",
"gulp-clean-css": "^4.3.0",
"gulp-header": "^2.0.9",
"gulp-rename": "^2.0.0",
"onchange": "^7.1.0",
"rollup": "^1.29.0",
"rollup-plugin-filesize": "^9.1.2",
"rollup-plugin-uglify": "^6.0.4"
},
"scripts": {
"clean": "rimraf dist/*",
"build": "rollup -c && gulp build_css && gulp add_banner",
"watch": "onchange 'src/**/*.*' -- npm run build",
"dev": "npm run build && npm run watch"
},
"files": [
"dist"
]
}