-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.28 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.28 KB
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
{
"name": "rollup-plugin-tailwindcss",
"version": "1.0.0",
"description": "Bundle Tailwind CSS stylesheet as a Rollup asset",
"main": "index.js",
"scripts": {
"lint:eslint": "eslint --fix",
"lint:markdownlint": "markdownlint",
"lint:prettier": "prettier --write --loglevel warn",
"lint:all:eslint": "yarn lint:eslint --ext .js .",
"lint:all:markdownlint": "yarn lint:markdownlint '**/*.md'",
"lint:all:prettier": "yarn lint:prettier '**/*.{css,html,md,js}'",
"lint": "run-s lint:all:*",
"test": "tape test/*.js | tap-spec"
},
"repository": "https://github.com/alexdilley/rollup-plugin-tailwindcss",
"keywords": [
"rollup-plugin",
"tailwind",
"tailwindcss"
],
"author": "Alex Dilley <alex.dilley@gmail.com>",
"license": "MIT",
"devDependencies": {
"eslint": "^6.8.0",
"markdownlint-cli": "^0.22.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"rollup": "^1.31.0",
"rollup-plugin-postcss": "^2.0.6",
"tailwindcss": "^1.2.0",
"tap-spec": "^5.0.0",
"tape": "^4.13.0"
},
"peerDependencies": {
"rollup": ">=1.19.0",
"tailwindcss": "^1.0.0"
},
"dependencies": {
"postcss": "^7.0.26",
"postcss-load-config": "^2.1.0",
"purgecss": "^2.0.6",
"rollup-pluginutils": "^2.8.2"
}
}