-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.69 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.69 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
{
"name": "chartjs-plugin-draggable-selectrange",
"version": "1.2.0",
"description": "A ChartJS select range plugin for Line charts. It select a range of chart from X axis",
"main": "index.js",
"scripts": {
"postbuild": "cpy package.json dist",
"build": "babel src -d dist",
"minify": "uglifyjs --compress -o ./src/index.min.js -- ./src/index.js",
"build:prod": "babel src -d dist && uglifyjs --compress -o ./dist/index.min.js -- ./dist/index.js && npm run postbuild && npm run minify"
},
"author": "Mohammad Hossein Pour",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.28.3",
"@babel/core": "^7.28.4",
"@babel/preset-env": "^7.28.3",
"cpy-cli": "^6.0.0",
"uglify-js": "^3.19.3"
},
"keywords": [
"chartjs",
"chartjs-plugin",
"plugin",
"line chart plugin",
"chartjs-plugin-draggable-selectrange",
"chartjs-plugin-draggable-select-range",
"draggable-select-range"
],
"packageManager": "yarn@4.4.0+sha512.91d93b445d9284e7ed52931369bc89a663414e5582d00eea45c67ddc459a2582919eece27c412d6ffd1bd0793ff35399381cb229326b961798ce4f4cc60ddfdb",
"dependencies": {
"chart.js": "^4.5.1"
},
"files": [
"dist/*"
],
"directories": {
"doc": "docs",
"example": "example"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mohamadhpp/chartjs-plugin-draggable-select-range.git"
},
"bugs": {
"url": "https://github.com/mohamadhpp/chartjs-plugin-draggable-select-range/issues"
},
"homepage": "https://chartjs-plugin-draggable-select-range.vercel.app/"
}