forked from danieldiekmeier/stimulus-controller-resolver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.23 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
{
"name": "stimulus-resolvers",
"description": "Load Stimulus controllers lazily and/or conditionally",
"version": "1.0.4",
"author": "Philipp Daun <[email protected]>)",
"license": "MIT",
"source": "src/index.js",
"main": "dist/index.js",
"module": "dist/index.es.js",
"esmodule": "dist/index.modern.js",
"unpkg": "dist/index.umd.js",
"scripts": {
"lint": "eslint src",
"clean": "rimraf dist",
"bundle": "microbundle",
"build": "npm run clean && npm run bundle",
"prepublish": "npm run clean && npm run lint && npm run build"
},
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/daun/stimulus-resolvers"
},
"keywords": [
"stimulus",
"controller",
"dynamic",
"lazy"
],
"bugs": {
"url": "https://github.com/daun/stimulus-resolvers/issues"
},
"homepage": "https://github.com/daun/stimulus-resolvers",
"devDependencies": {
"eslint": "^7.3.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-prettier": "^3.1.4",
"esm": "^3.2.25",
"microbundle": "^0.12.1",
"prettier": "^2.0.5",
"rimraf": "^3.0.2"
},
"peerDependencies": {
"@hotwired/stimulus": "3.x"
}
}