-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.97 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.97 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "highcharts-custom-events",
"version": "4.0.2",
"description": "Plugin that allows you to add extra events, like double / right click on each chart element, for Highcharts.",
"main": "js/customEvents.js",
"types": "js/customEvents.d.ts",
"exports": {
".": {
"import": "./js/customEvents.js",
"require": "./js/customEvents.js",
"types": "./js/customEvents.d.ts"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/blacklabel/custom_events.git"
},
"keywords": [
"highcharts",
"highstock",
"highmaps",
"events",
"highcharts-addon"
],
"author": "Black Label <start@blacklabel.pl> (http://blacklabel.pl)",
"license": "SEE LICENSE IN license.txt",
"bugs": {
"url": "https://github.com/blacklabel/custom_events/issues"
},
"homepage": "https://github.com/blacklabel/custom_events#readme",
"files": [
"js/customEvents.js",
"js/customEvents.d.ts"
],
"scripts": {
"lint": "eslint ts/**/*.ts",
"lint:fix": "eslint ts/**/*.ts --fix",
"typecheck": "tsc --noEmit",
"prebuild": "npm run typecheck",
"build": "gulp build",
"build:watch": "gulp watch",
"prepare": "npm run build"
},
"devDependencies": {
"@babel/preset-env": "^7.28.3",
"@typescript-eslint/eslint-plugin": "^8.39.1",
"@typescript-eslint/parser": "^8.39.1",
"ansi-colors": "^4.1.3",
"del": "^8.0.0",
"eslint": "^9.33.0",
"fancy-log": "^2.0.0",
"google-closure-compiler": "^20250813.0.0",
"gulp": "^5.0.0",
"gulp-babel": "^8.0.0",
"gulp-bump": "^3.2.0",
"gulp-eslint": "^6.0.0",
"gulp-filter": "^9.0.1",
"gulp-git": "^2.11.0",
"gulp-rename": "^2.0.0",
"gulp-replace": "^1.1.4",
"gulp-sourcemaps": "^3.0.0",
"gulp-typescript": "^6.0.0-alpha.1",
"gulp-uglify": "^3.0.2",
"through2": "^4.0.2",
"ts-node": "^10.9.1",
"typescript": "^5.8.3",
"yargs": "^18.0.0"
},
"peerDependencies": {
"highcharts": ">=9.0.0"
}
}