This repository has been archived by the owner on Dec 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
63 lines (63 loc) · 1.59 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
59
60
61
62
63
{
"name": "eleventy-plugin-tailwindcss",
"version": "0.3.0",
"description": "An Eleventy plugin to add Tailwind CSS support for your website",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/dafiulh/eleventy-plugin-tailwindcss.git"
},
"keywords": [
"eleventy",
"eleventy-plugin",
"tailwindcss"
],
"bugs": {
"url": "https://github.com/dafiulh/eleventy-plugin-tailwindcss/issues"
},
"author": {
"name": "Dafiul Haq",
"email": "[email protected]"
},
"homepage": "https://github.com/dafiulh/eleventy-plugin-tailwindcss#readme",
"license": "MIT",
"scripts": {
"sample": "rimraf sample/_site && npx @11ty/eleventy --input=sample --output=sample/_site --config=sample/.eleventy.js",
"sample:serve": "rimraf sample/_site && npx @11ty/eleventy --input=sample --output=sample/_site --config=sample/.eleventy.js --serve",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"files": [
"src/"
],
"peerDependencies": {
"@11ty/eleventy": ">=0.5.4"
},
"dependencies": {
"autoprefixer": "^10.0.2",
"chokidar": "^3.4.3",
"clean-css": "^4.2.3",
"fast-glob": "^3.2.4",
"mkdirp": "^1.0.4",
"postcss": "^8.1.7",
"tailwindcss": "^2.0.1"
},
"devDependencies": {
"@11ty/eleventy": "^0.11.1",
"eslint": "^7.13.0",
"eslint-config-google": "^0.14.0",
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"rimraf": "^3.0.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"npm run lint:fix"
]
}
}