-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
48 lines (48 loc) · 1.41 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
{
"name": "tailwindcss-pseudo-elements",
"version": "2.0.0",
"description": "TailwindCSS Plugin that adds variants of pseudo elements.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/croutonn/tailwindcss-pseudo-elements.git"
},
"keywords": [
"tailwindcss"
],
"author": "@croutonn",
"license": "MIT",
"bugs": {
"url": "https://github.com/croutonn/tailwindcss-pseudo-elements/issues"
},
"homepage": "https://github.com/croutonn/tailwindcss-pseudo-elements#readme",
"scripts": {
"fix": "yarn fix:prettier && yarn fix:eslint",
"fix:eslint": "eslint . --fix",
"fix:prettier": "prettier --write .",
"lint": "yarn lint:prettier && yarn lint:eslint",
"lint:eslint": "eslint .",
"lint:prettier": "prettier --check .",
"pretest": "yarn update && yarn lint",
"update": "node scripts/update-pseudos.js",
"test": "mocha --timeout 10000",
"test-only": "mocha --timeout 10000",
"version": "yarn fix"
},
"devDependencies": {
"@croutonn/eslint-config": "^1.0.14",
"chai": "^4.3.4",
"eslint": "^8.2.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"mocha": "^9.1.3",
"playwright": "^1.16.3",
"postcss": "^8.3.11",
"prettier": "^2.4.1",
"tailwindcss": "^2.1.2"
},
"peerDependencies": {
"tailwindcss": ">=1.9.6"
}
}