-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·63 lines (63 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
60
61
62
63
{
"name": "stimulus-toggle-util",
"version": "0.4.1",
"repository": {
"type": "git",
"url": "https://github.com/damonbauer/stimulus-toggle-util.git"
},
"homepage": "https://github.com/damonbauer/stimulus-toggle-util",
"bugs": "https://github.com/damonbauer/stimulus-toggle-util/issues",
"author": "Damon Bauer <damonbauer@users.noreply.github.com> (https://damonbauer.dev)",
"contributors": [
"Damon Bauer <damonbauer@users.noreply.github.com> (https://damonbauer.dev)"
],
"keywords": [
"stimulus",
"toggle",
"stimulus toggle",
"switch",
"hide",
"show",
"on/off"
],
"description": "An on/off toggle utility for Stimulus",
"main": "src/controllers/toggle_controller.js",
"files": [
"src/controllers/toggle_controller"
],
"license": "MIT",
"scripts": {
"prettier": "prettier --write src spec",
"start": "node server.js",
"test": "jest"
},
"dependencies": {
"stimulus": "^1.1.1"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/preset-env": "^7.7.7",
"@testing-library/dom": "^7.2.1",
"@testing-library/jest-dom": "^5.5.0",
"babel-loader": "^8.0.6",
"express": "^4.17.1",
"jest": "25.3.0",
"mutationobserver-shim": "0.3.5",
"prettier": "^2.0.4",
"webpack": "^4.41.4",
"webpack-dev-middleware": "^3.7.2"
},
"jest": {
"coveragePathIgnorePatterns": [
"<rootDir>/spec/utils.js"
],
"setupFilesAfterEnv": [
"<rootDir>/setup-jest.js"
]
},
"resolutions": {
"minimist": "^1.2.3",
"kind-of": "^6.0.3"
}
}