-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 1.2 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
{
"name": "tailwindcss-pixel-dimensions",
"version": "1.0.2",
"description": "Tailwind CSS plugin that generates widths and heights in pixels for tricky pixel-perfect layouts.",
"author": "Rob Sawyer <[email protected]>",
"license": "ISC",
"repository": "https://github.com/robksawyer/tailwindcss-pixel-dimensions.git",
"bugs": "https://github.com/robksawyer/tailwindcss-pixel-dimensions/issues",
"homepage": "https://github.com/robksawyer/tailwindcss-pixel-dimensions",
"scripts": {
"test": "jest --watchAll",
"version": "auto-changelog -p && git add CHANGELOG.md",
"release": "f(){ release-it $1 && github-release-from-changelog ;};f"
},
"auto-changelog": {
"output": "CHANGELOG.md",
"template": "keepachangelog",
"unreleased": true,
"commitLimit": false
},
"dependencies": {
"lodash": "^4.17.19",
"postcss-selector-parser": "^6.0.2"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"auto-changelog": "^2.2.0",
"github-release-from-changelog": "^2.1.1",
"jest": "^26.1.0",
"jest-matcher-css": "^1.1.0",
"postcss": "^7.0.32",
"release-it": "^13.6.5",
"tailwindcss": "^1.5.1"
}
}