-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
106 lines (106 loc) · 2.5 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
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
106
{
"name": "@mertasan/tailwindcss-variables",
"version": "2.7.0",
"description": "Easily create css variables without the need for a css file!",
"main": "src/index.js",
"license": "MIT",
"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:update-snapshots": "jest -u",
"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.4.13",
"cross-env": "^7.0.3",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"fs-extra": "^10.0.0",
"jest": "^29.4.3",
"postcss": "^8.4.21",
"postcss-import": "^14.1.0",
"prettier": "^2.5.0",
"snapshot-diff": "^0.10.0",
"tailwindcss": "^3.2.7"
},
"peerDependencies": {
"autoprefixer": "^10.0.2",
"postcss": "^8.0.9"
},
"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"
}
}