forked from gitbrent/bootstrap4-toggle
-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
65 lines (65 loc) · 1.72 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
{
"name": "bootstrap5-toggle",
"version": "5.1.2",
"author": {
"name": "Pablo Alcaraz Martínez",
"url": "https://github.com/palcarazm/"
},
"description": "Bootstrap Toggle is a bootstrap 5 plugin that converts checkboxes into toggles.",
"homepage": "https://palcarazm.github.io/bootstrap5-toggle/",
"license": "MIT",
"funding": {
"type": "GitHub Sponsors",
"url": "https://github.com/sponsors/palcarazm"
},
"main": "js/bootstrap5-toggle.ecmas.min.js",
"style": "css/bootstrap5-toggle.min.css",
"files": [
"css/*",
"js/*"
],
"scripts": {
"build": "grunt build",
"postversion": "grunt build && grunt readme && doctoc README.md --github",
"prepack": "grunt build && grunt readme && doctoc README.md --github && git add -A && git commit",
"test": "cypress run --browser=chrome"
},
"keywords": [
"bootstrap",
"bootstrap5",
"bootstrap-5",
"bootstrap 5",
"bootstrap checkbox",
"bootstrap switch",
"bootstrap toggle",
"bootstrap-checkbox",
"bootstrap-switch",
"bootstrap-switch-button",
"bootstrap-toggle"
],
"repository": {
"type": "git",
"url": "https://github.com/palcarazm/bootstrap5-toggle.git"
},
"bugs": {
"url": "https://github.com/palcarazm/bootstrap5-toggle/issues"
},
"devDependencies": {
"cypress": "^13.8.0",
"cypress-plugin-tab": "^1.0.5",
"doctoc": "^2.2.0",
"dompurify": "^3.0.0",
"grunt": "^1.5.3",
"grunt-banner": "^0.6.0",
"grunt-contrib-clean": "^2.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-cssmin": "^5.0.0",
"grunt-contrib-uglify": "^5.2.1"
},
"dependencies": {
"bootstrap": "^5.0.0"
},
"optionalDependencies": {
"jquery": "^3.6.0"
}
}