-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.23 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
{
"name": "checkboxes.js",
"version": "1.2.2",
"description": "A jQuery plugin that gives you nice powers over your checkboxes.",
"keywords": [
"checkbox",
"checkboxes",
"range",
"jquery",
"plugin"
],
"homepage": "https://github.com/rmariuzzo/checkboxes.js",
"bugs": "https://github.com/rmariuzzo/checkboxes.js/issues",
"license": "MIT",
"author": {
"name": "Rubens Mariuzzo",
"email": "rubens@mariuzzo.com",
"url": "https://github.com/rmariuzzo"
},
"main": "dist/jquery.checkboxes-1.2.2.min.js",
"engines": {
"node": ">=20"
},
"repository": {
"type": "git",
"url": "https://github.com/rmariuzzo/checkboxes.js.git"
},
"scripts": {
"build": "node build.js",
"version": "npm run build && git add dist/ docs/bundle/checkboxes.js/jquery.checkboxes.min.js docs/index.html",
"lint": "eslint src tests/specs",
"test": "jest"
},
"dependencies": {
"jquery": "^3.7.1"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@eslint/js": "^10.0.0",
"babel-jest": "^30.0.0",
"eslint": "^10.0.0",
"globals": "^17.0.0",
"jest": "^30.0.0",
"jest-environment-jsdom": "^30.0.0",
"terser": "^5.30.0"
}
}