This repository has been archived by the owner on Oct 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.61 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
{
"name": "@davidjr82/stimulus-utils-toggler",
"version": "0.4.2",
"description": "Reusable toggler controller for stimulus",
"keywords": [
"stimulus",
"toggler",
"toggle",
"reveal",
"show on off",
"stimulus toggler",
"stimulus toggle"
],
"homepage": "https://github.com/davidjr82/stimulus-utils-toggler",
"bugs": "https://github.com/davidjr82/stimulus-utils-toggler/issues",
"license": "MIT",
"author": "David Jiménez <[email protected]>",
"contributors": [
"David Jiménez <[email protected]>"
],
"files": [
"src/controllers/toggler_controller"
],
"main": "src/controllers/toggler_controller.js",
"repository": {
"type": "git",
"url": "https://github.com/davidjr82/stimulus-utils-toggler.git"
},
"scripts": {
"test": "jest",
"build-demo": "npx tailwindcss -i ./src/style.css -o ./public/style.css && webpack",
"build": "jest && npx tailwindcss -i ./src/style.css -o ./public/style.css && webpack"
},
"dependencies": {
"@hotwired/stimulus": ">=3.0.0"
},
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"@testing-library/dom": "^8.11.3",
"@testing-library/jest-dom": "^5.16.2",
"jest": "^27.5.1",
"mutationobserver-shim": "^0.3.7",
"tailwindcss": "^3.0.23",
"webpack": "^5.69.1",
"webpack-cli": "^4.9.2"
},
"jest": {
"testEnvironment": "jsdom",
"testRegex": [
"tests/javascript/.*\\.test\\.js"
],
"setupFilesAfterEnv": [
"./tests/javascript/setup.js"
],
"coveragePathIgnorePatterns": [
"./tests/javascript/setup.js"
]
}
}