forked from excid3/tailwindcss-stimulus-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.49 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
{
"name": "tailwindcss-stimulus-components",
"version": "3.0.4",
"description": "A set of Stimulus components (tabs, dropdowns, modals, toggles, autosave, etc) for TailwindCSS users",
"source": "src/index.js",
"exports": "./dist/tailwindcss-stimulus-components.modern.js",
"main": "./dist/tailwindcss-stimulus-components.cjs",
"module": "./dist/tailwindcss-stimulus-components.module.js",
"unpkg": "./dist/tailwindcss-stimulus-components.umd.js",
"typings": "./index.d.ts",
"repository": {
"url": "https://github.com/excid3/tailwindcss-stimulus-components",
"type": "git"
},
"author": "Chris Oliver <[email protected]>",
"contributors": [],
"license": "MIT",
"private": false,
"amdName": "TailwindcssStimulusComponents",
"keywords": [
"stimulus",
"stimulusjs",
"controller",
"tailwindcss",
"components"
],
"np": {
"tests": false
},
"scripts": {
"build": "microbundle --globals @hotwired/stimulus=Stimulus",
"prepublish": "npm run build",
"test": "NODE_ENV=test jest"
},
"jest": {
"testRegex": ".*_test.js",
"roots": [
"__tests__"
],
"moduleDirectories": [
"node_modules",
"src"
]
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.15.0",
"jest": "^27.0.0",
"microbundle": "^0.14.0",
"mutationobserver-shim": "^0.3.7",
"np": "^7.5.0"
},
"dependencies": {
"@hotwired/stimulus": ">=3.0.0"
},
"peerDependencies": {
"@hotwired/stimulus": ">=3.0.0"
}
}