-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.6 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
{
"name": "@davidjr82/stimulus-toggler",
"version": "0.5.3",
"keywords": [
"hotwired stimulus toggler",
"hotwired stimulus toggle",
"hotwired stimulus",
"stimulus toggler",
"stimulus toggle",
"stimulus",
"toggler",
"toggle",
"reveal",
"show on off"
],
"description": "Hotwired stimulus toggler based on reactivity concept.",
"files": [
"src/controllers/toggler_controller.js",
"src/utils/"
],
"main": "src/controllers/toggler_controller.js",
"scripts": {
"test": "vitest",
"coverage": "vitest run --coverage",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidjr82/stimulus-toggler.git"
},
"author": "David Jiménez <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/davidjr82/stimulus-toggler/issues"
},
"homepage": "https://github.com/davidjr82/stimulus-toggler#readme",
"devDependencies": {
"@hotwired/stimulus": "^3.1.0",
"@testing-library/dom": "^8.19.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/user-event": "^14.4.3",
"@vitest/coverage-c8": "^0.24.3",
"autoprefixer": "^10.4.12",
"jsdom": "^20.0.1",
"postcss": "^8.4.18",
"tailwindcss": "^3.2.1",
"vitepress": "^1.0.0-alpha.26",
"vitest": "^0.24.3",
"vue": "^3.2.41"
},
"peerDependencies": {
"@hotwired/stimulus": ">= 3"
},
"postcss": {
"plugins": {
"tailwindcss": {},
"autoprefixer": {}
}
}
}