forked from allpro/layout
-
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.59 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
{
"name": "layout-jquery3",
"title": "UI Layout",
"description": "A modern jQuery 4 layout manager with resizable, collapsible, slidable, and nested panels.",
"version": "2.0.0",
"main": "dist/jquery.layout_and_plugins.min.js",
"types": "dist/jquery.layout_and_plugins.d.ts",
"files": [
"dist/",
"LICENSE.txt",
"README.md"
],
"scripts": {
"build": "node scripts/build.mjs",
"check": "node scripts/check.mjs",
"test:types": "tsc --project tsconfig.types.json",
"test": "npm run build && npm run check && npm run test:types && node --test test/layout.test.mjs test/no-jquery-ui.test.cjs test/version-guard.test.cjs"
},
"keywords": [
"ui",
"layout"
],
"author": {
"name": "Kevin Dalman",
"email": "kevin@jquery-dev.com"
},
"maintainers": [
{
"name": "Kevin Dalman",
"email": "kevin@jquery-dev.com",
"url": "http://layout.jquery-dev.com"
},
{
"name": "Marc Magon",
"email": "ged_marc@hotmail.com",
"url": "http://www.guicedee.com"
}
],
"license": "MIT OR GPL-3.0-or-later",
"homepage": "https://gedmarc.github.io/layout/",
"repository": {
"type": "git",
"url": "git+https://github.com/GedMarc/layout.git"
},
"bugs": {
"url": "https://github.com/GedMarc/layout/issues"
},
"peerDependencies": {
"jquery": ">=4.0.0 <5",
"jquery-ui": ">=1.14.0 <2"
},
"peerDependenciesMeta": {
"jquery-ui": {
"optional": true
}
},
"devDependencies": {
"@types/jquery": "4.0.1",
"clean-css": "^5.3.3",
"jquery": "4.0.0",
"jquery-ui": "1.14.2",
"jsdom": "^26.1.0",
"terser": "^5.43.1",
"typescript": "7.0.2"
},
"engines": {
"node": ">=20"
}
}