-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.66 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
{
"name": "@markusantonwolf/tailwind-css-plugin-multi-columns",
"version": "1.2.0",
"description": "The CSS multi-column layout allows easy definition of multiple columns of text - just like in newspapers. This Tailwind CSS plugin adds utilities for you to use all multi-column properties.",
"main": "src/index.js",
"scripts": {
"test": "node ./src/test.js",
"prebuild": "npm run test && node ./scripts/prebuild.js",
"build": "node ./scripts/build.js",
"upload": "npm publish --access public",
"patch": "npm version patch",
"minor": "npm version minor",
"major": "npm version major"
},
"author": {
"name": "Markus A. Wolf",
"email": "wolf.markus.anton@gmail.com",
"url": "https://www.markusantonwolf.com/en/"
},
"homepage": "https://ta-styled-plugins.com/ta-helper-plugins/#multi-columns",
"bugs": {
"url": "https://github.com/markusantonwolf/tailwind-css-plugin-multi-columns/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/markusantonwolf/tailwind-css-plugin-multi-columns.git"
},
"license": "MIT",
"keywords": [
"tailwindcss",
"css",
"tailwind",
"multi",
"columns",
"multicolumn"
],
"dependencies": {
"change-case": "^4.1.2",
"hex-rgb": "^4.3.0",
"lodash": "^4.17.21",
"replace-string": "^3.1.0"
},
"devDependencies": {
"autoprefixer": "^9.6.1",
"clean-css": "^4.2.1",
"tailwindcss": "^3.1.3"
},
"peerDependencies": {
"tailwindcss": "^1.8.3 || ^2.0.0 || ^3.0.0"
}
}