-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.48 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.48 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
{
"name": "jq-repeat",
"version": "2.0.1",
"type": "module",
"description": "A simple, yet highly customizable jQuery plugin for dynamic DOM templating with Mustache. Supports automatic sorting, nested templates, and custom index keys.",
"main": "dist/js/jq-repeat.js",
"browser": "dist/js/jq-repeat.min.js",
"files": [
"dist/",
"src/",
"README.md",
"LICENSE"
],
"keywords": [
"dom",
"jquery",
"mustache",
"template",
"repeat",
"templating",
"jquery-plugin",
"dynamic-lists",
"data-binding"
],
"author": {
"name": "William Mantly",
"email": "wmantly@gmail.com"
},
"contributors": [
{
"name": "Derek Hu",
"email": "derek.dchu@gmail.com"
}
],
"scripts": {
"build": "rollup -c",
"test": "mocha",
"prepublishOnly": "npm run build && npm test"
},
"peerDependencies": {
"jquery": ">=3.0.0",
"mustache": ">=4.0.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/wmantly/jq-repeat.git"
},
"bugs": {
"url": "https://github.com/wmantly/jq-repeat/issues",
"email": "wmantly@gmail.com"
},
"homepage": "https://github.com/wmantly/jq-repeat#readme",
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"chai": "^4.3.4",
"global-jsdom": "^27.0.0",
"jquery": "^3.7.1",
"jsdom": "^27.3.0",
"mocha": "^10.2.0",
"mustache": "^4.2.0",
"rollup": "^4.54.0"
},
"engines": {
"node": ">=14.0.0"
}
}