-
Notifications
You must be signed in to change notification settings - Fork 723
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.01 KB
/
Copy pathpackage.json
File metadata and controls
113 lines (113 loc) · 3.01 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
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
110
111
112
113
{
"name": "jquery-contextmenu",
"title": "jQuery.contextMenu()",
"version": "2.10.2",
"author": {
"name": "Björn Brala",
"url": "http://www.swis.nl"
},
"license": "MIT",
"peerDependencies": {
"jquery": ">=1.12.0"
},
"devDependencies": {
"@11ty/eleventy": "^3.1.6",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.62.0",
"doctoc": "^2.5.0",
"cssnano": "^8.0.2",
"eslint": "^10.8.0",
"globals": "^17.8.0",
"gulp": "^5.0.1",
"gulp-autoprefixer": "^10.0.0",
"gulp-eslint-new": "^2.6.2",
"gulp-iconfont": "^12.0.0",
"gulp-rename": "^2.0.0",
"gulp-replace": "^1.0.0",
"gulp-sass": "^6.0.1",
"gulp-sourcemaps": "^3.0.0",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.1.0",
"karma-qunit": "^4.2.1",
"lodash": "^4.18.1",
"markdown-it-anchor": "^9.2.1",
"postcss": "^8.5.23",
"pump": "^3.0.0",
"qunit": "^2.26.0",
"sass": "^1.102.0",
"stylelint": "^17.14.1",
"stylelint-config-recess-order": "^7.7.0",
"stylelint-config-standard": "^40.0.0",
"stylelint-order": "^8.1.1",
"terser": "^5.49.0"
},
"description": "Management facility for context menus. Developed for a large number of triggering objects. HTML5 Polyfill",
"keywords": [
"contextmenu",
"context menu",
"context-menu",
"menu",
"html5 menu",
"html5 contextmenu",
"html5 context menu",
"html5 context-menu",
"jquery-plugin",
"ecosystem:jquery"
],
"homepage": "http://swisnl.github.io/jQuery-contextMenu/",
"contributors": [
{
"name": "Rodney Rehm",
"url": "http://rodneyrehm.de"
},
{
"name": "Addy Osmani",
"url": "https://github.com/addyosmani"
},
{
"name": "Christiaan Baartse",
"url": "https://github.com/christiaan"
}
],
"repository": {
"type": "git",
"url": "git://github.com/swisnl/jQuery-contextMenu.git"
},
"main": "dist/jquery.contextMenu.js",
"files": [
"dist",
"src"
],
"scripts": {
"build": "gulp build",
"prepublishOnly": "npm run build",
"test": "npm run test-unit",
"test-unit": "./node_modules/karma/bin/karma start",
"test-accept": "npm run test:fixtures && playwright test",
"test:fixtures": "ELEVENTY_FIXTURES=1 eleventy --config=documentation/.eleventy.js --input=documentation --output=test/integration/html --quiet",
"docs:build": "eleventy --config=documentation/.eleventy.js --input=documentation --output=documentation/_site",
"docs:preview": "SITE_BASE_URL= eleventy --config=documentation/.eleventy.js --input=documentation --output=documentation/_site --serve"
},
"browserslist": [
"Android 2.3",
"Android >= 4",
"Chrome >= 20",
"Firefox >= 24",
"Explorer >= 11",
"iOS >= 6",
"Opera >= 12",
"Safari >= 6"
],
"dependencies": {
"jquery": ">=1.12.0"
},
"overrides": {
"@gulp-sourcemaps/identity-map": {
"postcss": "$postcss"
},
"@11ty/recursive-copy": "^5.0.2",
"ttf2woff2": {
"node-gyp": "^12.4.0"
}
}
}