forked from mertasan/tailwindcss-variables
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.5 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 2.5 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
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@mertasan/tailwindcss-variables",
"version": "1.3.3",
"description": "Easily create css variables without the need for a css file!",
"main": "src/index.js",
"license": "GPL-3.0-or-later",
"repository": "https://github.com/mertasan/tailwindcss-variables",
"bugs": {
"url": "https://github.com/mertasan/tailwindcss-variables/issues"
},
"homepage": "https://github.com/mertasan/tailwindcss-variables",
"author": "Mert Aşan <[email protected]> (https://github.com/mertasan)",
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"build": "env NODE_ENV=production node scripts/build.js",
"build:clean": "env NODE_ENV=production CLEAN=true node scripts/build.js",
"style": "eslint .",
"lint": "npm run style",
"format": "prettier --write ."
},
"keywords": [
"tailwindcss",
"tailwindcss variables",
"tailwind variables",
"css variables",
"tailwind css variables",
"tailwindcss css variables",
"tailwindcss dark mode",
"tailwindcss multi theme"
],
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"autoprefixer": "^10.2.6",
"cross-env": "^7.0.3",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"fs-extra": "^10.0.0",
"jest": "^27.0.5",
"postcss": "^8.3.5",
"prettier": "^2.3.1",
"snapshot-diff": "^0.9.0",
"tailwindcss": "^2.2.4"
},
"peerDependencies": {
"autoprefixer": ">=9.8.0",
"postcss": ">=7.0.30",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.2.4"
},
"prettier": {
"semi": false,
"singleQuote": true,
"printWidth": 120,
"tabWidth": 2,
"useTabs": false,
"trailingComma": "es5",
"bracketSpacing": true,
"parser": "flow",
"overrides": [
{
"files": [
"**/*.css",
"**/*.scss",
"**/*.html"
],
"options": {
"singleQuote": false
}
}
]
},
"jest": {
"testTimeout": 30000,
"testMatch": [
"<rootDir>/__tests__/**/*.test.js"
],
"collectCoverageFrom": [
"src/**/*.js",
"!**/node_modules/**"
],
"testPathIgnorePatterns": [
"<rootDir>/__tests__/util/"
],
"collectCoverage": true,
"coverageReporters": [
"json",
"html"
]
},
"browserslist": [
"> 1%",
"not edge <= 18",
"not ie 11",
"not op_mini all"
],
"engines": {
"node": ">=12.13.0"
}
}