forked from zirkeldesign/tailwindcss-stuck-variant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.07 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
{
"name": "@zirkeldesign/tailwindcss-stuck-variant",
"version": "0.2.1",
"description": "Adds a `stuck:` (and `group-stuck:`) variant to Tailwind CSS.",
"author": "Daniel Sturm <[email protected]>",
"license": "MIT",
"main": "index.js",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"scripts": {
"lint": "eslint src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zirkeldesign/tailwindcss-stuck-variant.git"
},
"bugs": {
"url": "https://github.com/zirkeldesign/tailwindcss-stuck-variant/issues"
},
"homepage": "https://github.com/zirkeldesign/tailwindcss-stuck-variant#readme",
"keywords": [
"tailwind",
"tailwindcss",
"tailwindcss-plugin",
"tailwindcss-variant",
"sticky",
"stuck",
"variants",
"plugin"
],
"devDependencies": {
"eslint": "^7.7.0",
"husky": ">=4",
"lint-staged": ">=10",
"tailwindcss": "^1.6||^2.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix"
}
}