-
Notifications
You must be signed in to change notification settings - Fork 331
/
package.json
109 lines (109 loc) · 2.94 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "imagemapster",
"version": "1.8.0",
"description": "jQuery plugin that activates areas in HTML image maps with support for highlighting, selecting, tooltips, resizing and more",
"main": "dist/jquery.imagemapster.min.js",
"module": "dist/jquery.imagemapster.min.mjs",
"exports": {
".": {
"import": {
"development": "./dist/jquery.imagemapster.mjs",
"default": "./dist/jquery.imagemapster.min.mjs"
},
"require": {
"development": "./dist/jquery.imagemapster.js",
"default": "./dist/jquery.imagemapster.min.js"
},
"default": "./dist/jquery.imagemapster.min.js"
}
},
"files": [
"dist/**/*"
],
"scripts": {
"build": "grunt build",
"dist": "grunt dist",
"dev": "grunt dev",
"test": "grunt test",
"example": "grunt example",
"doc": "grunt docco",
"lint": "grunt lint",
"lint:fix": "grunt lint:fix",
"format": "grunt format",
"format:fix": "grunt format:fix",
"checklinks": "grunt checklinks"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jamietre/ImageMapster.git"
},
"keywords": [
"jquery",
"imagemapster",
"activate",
"area",
"html",
"plugin",
"maps",
"map",
"image",
"imagemap",
"image map",
"canvas",
"highlight",
"select",
"resize",
"tooltip"
],
"author": {
"name": "James Treworgy",
"url": "https://github.com/jamietre"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/jamietre/ImageMapster/issues"
},
"homepage": "https://jamietre.github.io/ImageMapster",
"peerDependencies": {
"jquery": ">=1.7.0"
},
"devDependencies": {
"docco-next": "^0.9.14",
"eslint": "^8.57.0",
"eslint-config-jquery": "^3.0.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-astro": "^1.1.1",
"eslint-plugin-html": "^8.1.1",
"eslint-plugin-jsonc": "^2.15.1",
"eslint-plugin-markdown": "^4.0.1",
"eslint-plugin-mdx": "^3.1.5",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-yml": "^1.14.0",
"grunt": "^1.6.1",
"grunt-bump": "^0.8.0",
"grunt-contrib-clean": "^2.0.1",
"grunt-contrib-concat": "^2.1.0",
"grunt-contrib-connect": "^4.0.0",
"grunt-contrib-uglify": "^5.2.2",
"grunt-contrib-watch": "^1.1.0",
"grunt-env": "^1.0.1",
"grunt-eslint": "^24.3.0",
"grunt-shell": "^4.0.0",
"grunt-umd": "^3.0.0",
"jit-grunt": "^0.10.0",
"prettier": "^3.2.5",
"prettier-plugin-astro": "^0.13.0",
"remark": "^15.0.1",
"remark-cli": "^12.0.1",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.0",
"remark-lint-no-dead-urls": "^1.1.0",
"remark-preset-lint-consistent": "^6.0.0",
"remark-preset-lint-markdown-style-guide": "^6.0.0",
"remark-preset-lint-recommended": "^7.0.0",
"remark-preset-prettier": "^2.0.1",
"remark-validate-links": "^13.0.1",
"typescript": "^5.4.5",
"typescript-eslint": "^7.8.0"
}
}