forked from excid3/tailwindcss-stimulus-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.44 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
{
"name": "tailwindcss-stimulus-components",
"version": "2.2.0",
"description": "A set of Stimulus components (tabs, dropdowns, modals, toggles, autosave, etc) for TailwindCSS users",
"main": "dist/tailwindcss-stimulus-components.js",
"umd:main": "dist/tailwindcss-stimulus-components.umd.js",
"module": "dist/tailwindcss-stimulus-components.m.js",
"esmodule": "dist/tailwindcss-stimulus-components.modern.js",
"repository": {
"url": "https://github.com/excid3/tailwindcss-stimulus-components",
"type": "git"
},
"author": "Chris Oliver <excid3@gmail.com>",
"contributors": [],
"license": "MIT",
"private": false,
"amdName": "TailwindcssStimulusComponents",
"keywords": [
"stimulus",
"stimulusjs",
"controller",
"tailwindcss",
"components"
],
"np": {
"tests": false
},
"peerDependencies": {
"stimulus": ">=2.0.0"
},
"scripts": {
"build": "microbundle --globals stimulus=Stimulus",
"prepublish": "yarn build",
"test": "NODE_ENV=test jest"
},
"jest": {
"testRegex": ".*_test.js",
"roots": [
"__tests__"
],
"moduleDirectories": [
"node_modules",
"src"
]
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.12.10",
"babel-jest": "^26.6.3",
"babel-preset-es2015": "^6.24.1",
"jest": "^26.6.3",
"microbundle": "^0.12.3",
"mutationobserver-shim": "^0.3.7"
},
"dependencies": {
"stimulus": "^2.0.0"
}
}