-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
43 lines (43 loc) · 1 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
{
"name": "stimulus-controller-resolver",
"version": "3.1.0",
"description": "Resolve your Stimulus Controllers any way you want – even lazy!",
"exports": "./src/stimulus-controller-resolver.js",
"type": "module",
"files": [
"src"
],
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true
},
"scripts": {
"prettier": "prettier --write src/*"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/danieldiekmeier/stimulus-controller-resolver.git"
},
"keywords": [
"hotwire",
"hotwired",
"stimulus",
"stimulusjs",
"controller",
"lazy"
],
"author": "Daniel Diekmeier",
"license": "MIT",
"bugs": {
"url": "https://github.com/danieldiekmeier/stimulus-controller-resolver/issues"
},
"homepage": "https://github.com/danieldiekmeier/stimulus-controller-resolver#readme",
"devDependencies": {
"prettier": "^2.4.1"
},
"peerDependencies": {
"@hotwired/stimulus": "3.x"
}
}