-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
71 lines (71 loc) · 1.7 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": "@savvywombat/tailwindcss-grid-areas",
"version": "4.0.0",
"description": "A plugin to provide Tailwind CSS utilities for grid areas.",
"keywords": [
"tailwind",
"tailwindcss",
"css",
"css grid",
"css grid area",
"grid-template-areas"
],
"license": "MIT",
"author": "Stuart Jones <stuart@savvywombat.com.au>",
"repository": {
"type": "git",
"url": "git+https://github.com/savvywombat/tailwindcss-grid-areas.git"
},
"bugs": "https://github.com/savvywombat/tailwindcss-grid-areas/issues",
"homepage": "https://github.com/savvywombat/tailwindcss-grid-areas#readme",
"main": "src/plugin.js",
"scripts": {
"style": "eslint .",
"test": "jest && eslint .",
"test:coverage": "jest --config jestconfig.coverage.json"
},
"peerDependencies": {
"tailwindcss": "^3.0.1"
},
"devDependencies": {
"@babel/cli": "^7.22.5",
"@babel/core": "^7.22.5",
"@babel/node": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"babel-jest": "^29.5.0",
"clean-css": "^5.3.2",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"jest-matcher-css": "^1.1.0",
"postcss": "^8.4.24",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.3.0",
"tailwindcss": "^3.3.2"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "16.20.2"
}
}
]
]
},
"engines": {
"node": ">=16.20.2"
},
"jest": {
"testTimeout": 30000,
"setupFilesAfterEnv": [
"<rootDir>/jest/customMatchers.js"
],
"testPathIgnorePatterns": [
"/node_modules/"
]
}
}