This repository has been archived by the owner on Aug 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.45 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
64
65
66
67
68
69
70
71
{
"name": "postcss-multiple-tailwind",
"version": "1.0.1",
"description": "PostCSS plugin to process multiple tailwindcss configs",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"tailwindcss"
],
"scripts": {
"lint": "eslint . --fix",
"test": "jest --coverage"
},
"author": "Robbe Van Petegem <[email protected]>",
"license": "MIT",
"repository": "robbevp/postcss-multiple-tailwind",
"engines": {
"node": ">=10.0.0"
},
"peerDependencies": {
"postcss": "^8.2.8",
"tailwindcss": "^3.0.0"
},
"devDependencies": {
"autoprefixer": "^10.2.5",
"clean-publish": "^4.0.0",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-jest": "^27.0.4",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^29.0.3",
"postcss": "^8.2.8",
"prettier": "^2.2.1",
"tailwindcss": "^3.0.5"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2017
},
"env": {
"node": true,
"es6": true
},
"extends": [
"eslint:recommended",
"plugin:jest/recommended",
"plugin:prettier/recommended"
],
"rules": {
"jest/expect-expect": "off"
}
},
"jest": {
"testEnvironment": "node",
"coverageThreshold": {
"global": {
"statements": 100
}
}
},
"files": [
"CHANGELOG.md",
"index.js",
"LICENSE",
"README.md",
"package.json",
"yarn.lock"
],
"dependencies": {}
}